:root {
  --bg: #0c0b0b;
  --surface: rgba(28, 28, 30, 0.84);
  --surface-strong: #1c1c1e;
  --ink: #ffffff;
  --muted: #a6a6a6;
  --line: rgba(208, 253, 62, 0.16);
  --accent: #d0fd3e;
  --accent-deep: #a3d110;
  --accent-soft: rgba(208, 253, 62, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(208, 253, 62, 0.14), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(163, 209, 16, 0.18), transparent 18%),
    linear-gradient(180deg, #0c0b0b 0%, #111214 42%, #1c1c1e 100%);
}

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

img {
  max-width: 100%;
}

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 48px;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(30px);
}

body::before {
  top: 8%;
  left: -60px;
  width: 240px;
  height: 240px;
  background: rgba(208, 253, 62, 0.14);
}

body::after {
  right: -50px;
  bottom: 14%;
  width: 220px;
  height: 220px;
  background: rgba(91, 163, 91, 0.12);
}

.topbar {
  position: sticky;
  top: 0;
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px max(16px, calc((100vw - var(--container)) / 2 + 16px));
  backdrop-filter: blur(16px);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

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

.brand__icon-wrap {
  position: relative;
  display: block;
  width: clamp(38px, 4.6vw, 52px);
  height: clamp(38px, 4.6vw, 52px);
  flex: 0 0 auto;
}

.brand__title-wrap {
  position: relative;
  display: block;
  width: clamp(82px, 10vw, 128px);
  height: clamp(17px, 2.2vw, 24px);
  flex: 0 0 auto;
}

.brand__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.25s ease;
}

.brand__title {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.25s ease;
}

.brand__logo--black {
  opacity: 0;
}

.brand__title--black {
  opacity: 0;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

body.showcase-in-view .topbar {
  color: #0c0b0b;
  background: rgba(208, 253, 62, 0.14);
  border-bottom: 1px solid rgba(12, 11, 11, 0.08);
  box-shadow: 0 10px 24px rgba(12, 11, 11, 0.08);
}

body.showcase-in-view .topnav,
body.showcase-in-view .brand__text {
  color: rgba(12, 11, 11, 0.78);
}

body.showcase-in-view .topnav a:hover,
body.showcase-in-view .topnav a:focus-visible,
body.showcase-in-view .brand:hover .brand__text,
body.showcase-in-view .brand:focus-visible .brand__text {
  color: #0c0b0b;
}

body.showcase-in-view .brand__logo--yellow {
  opacity: 0;
}

body.showcase-in-view .brand__logo--black {
  opacity: 1;
}

body.showcase-in-view .brand__title--yellow {
  opacity: 0;
}

body.showcase-in-view .brand__title--black {
  opacity: 1;
}

body.showcase-in-view .button--ghost {
  background: rgba(12, 11, 11, 0.06);
  color: #0c0b0b;
  border-color: rgba(12, 11, 11, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #0c0b0b;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(163, 209, 16, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(163, 209, 16, 0.24);
}

.button--secondary,
.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  box-shadow: none;
  border: 1px solid var(--line);
}

.hero,
.section,
.footer {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  padding: 48px 0 42px;
  min-height: calc(100vh - 110px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1,
.section-heading h2,
.split-copy h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.92;
}

.hero__lede,
.section-heading p,
.split-copy p,
.feature-card p,
.outcome-card span,
.pricing-card li,
.demo-copy p,
.info-card li,
.faq-list p,
.footer p,
.form-note {
  color: var(--muted);
}

.hero__lede {
  max-width: 60ch;
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 22px 0 28px;
}

.hero__actions,
.hero__proof,
.footer__links,
.pricing-card ul,
.info-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__proof {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.hero__proof li,
.pricing-card li,
.info-card li {
  position: relative;
  padding-left: 20px;
}

.hero__proof li::before,
.pricing-card li::before,
.info-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__panel {
  display: flex;
  justify-content: flex-end;
}

.hero-video-card {
  position: relative;
  width: min(100%, 360px);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(208, 253, 62, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(3deg);
  overflow: hidden;
}

.hero-video-card__label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(12, 11, 11, 0.72);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  background: #0c0b0b;
  object-fit: cover;
}

.glass-card,
.feature-card,
.outcome-card,
.pricing-card,
.demo-form,
.info-card,
.faq-list details,
.footer,
.strip {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.glass-card {
  width: min(100%, 420px);
  padding: 28px;
  transform: rotate(-3deg);
}

.reveal-up {
  opacity: 0;
  transform: translate3d(0, calc(36px + var(--parallax-shift, 0px)), 0);
  transition:
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.7s ease;
  will-change: transform, opacity;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
}

.parallax-float {
  will-change: transform;
}

.metric-label,
.pricing-card__label {
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metrics {
  display: grid;
  gap: 20px;
}

.metrics strong,
.feature-card h3,
.pricing-card h3,
.info-card h3,
.outcome-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.metrics span {
  color: var(--muted);
}

.strip {
  margin: 8px 0 32px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.12), rgba(255, 255, 255, 0.7));
}

.strip p {
  margin: 0;
  font-weight: 700;
}

.section--clients {
  margin-top: 0;
  padding-top: 0;
}

.client-strip {
  position: relative;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  padding: 12px max(14px, calc((100vw - var(--container)) / 2 + 14px));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(208, 253, 62, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(17, 18, 20, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.client-strip::before,
.client-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 92px;
  pointer-events: none;
  z-index: 2;
}

.client-strip::before {
  left: 0;
  background: linear-gradient(90deg, rgba(17, 18, 20, 0.96), rgba(17, 18, 20, 0));
}

.client-strip::after {
  right: 0;
  background: linear-gradient(270deg, rgba(17, 18, 20, 0.96), rgba(17, 18, 20, 0));
}

.client-strip__track {
  display: flex;
  width: max-content;
}

.client-strip__track--animated {
  animation: client-strip-scroll 28s linear infinite;
}

.client-strip:hover .client-strip__track--animated,
.client-strip:focus-within .client-strip__track--animated {
  animation-play-state: paused;
}

.client-strip__group {
  display: flex;
  align-items: center;
  gap: 52px;
  min-width: max-content;
  flex-shrink: 0;
  padding-right: 52px;
}

.client-strip__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(84px, 8vw, 108px);
  height: clamp(84px, 8vw, 108px);
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(208, 253, 62, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.client-strip__logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.08);
  opacity: 0.92;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    opacity 0.2s ease;
}

.client-strip__logo-card:hover,
.client-strip__logo-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(208, 253, 62, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.client-strip__logo-card:hover img,
.client-strip__logo-card:focus-visible img {
  transform: scale(1.02);
  filter: grayscale(0);
  opacity: 1;
}

.client-strip__note {
  width: min(calc(100% - 32px), var(--container));
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.section--platforms {
  padding-top: 38px;
}

.platform-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 18%, rgba(208, 253, 62, 0.12), transparent 24%),
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(18, 21, 24, 0.96), rgba(12, 13, 14, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.platform-showcase::before {
  content: '';
  position: absolute;
  inset: auto -10% -38% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(208, 253, 62, 0.1);
  filter: blur(24px);
  pointer-events: none;
}

.platform-copy {
  position: relative;
  z-index: 1;
}

.platform-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.04em;
}

.platform-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.platform-visuals {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 22px;
  align-items: center;
}

.platform-card {
  position: relative;
  width: 100%;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(208, 253, 62, 0.18);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.platform-card--web {
  align-self: start;
  transform: translate3d(0, -10px, 0) rotate(-4deg);
  animation: platform-float-web 7.2s ease-in-out infinite;
}

.platform-card--desktop {
  align-self: end;
  transform: translate3d(0, 24px, 0) rotate(4deg);
  animation: platform-float-desktop 8.4s ease-in-out infinite;
}

.platform-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(208, 253, 62, 0.14);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes platform-float-web {

  0%,
  100% {
    transform: translate3d(0, -10px, 0) rotate(-4deg);
  }

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

@keyframes platform-float-desktop {

  0%,
  100% {
    transform: translate3d(0, 24px, 0) rotate(4deg);
  }

  50% {
    transform: translate3d(0, 38px, 0) rotate(2deg);
  }
}

.section--profile-story {
  position: relative;
  padding-top: 72px;
  padding-bottom: 24px;
  z-index: 0;
}

.section--profile-story::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 18% 18%, rgba(208, 253, 62, 0.08), transparent 22%),
    radial-gradient(circle at 86% 24%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, #050505 0%, #0d0d0e 100%);
  z-index: -1;
}

.section--profile-story .section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.section--profile-story .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.profile-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 5vw, 72px);
  min-height: 420vh;
  align-items: start;
  --profile-pin-top: 96px;
  --profile-image-offset: 0px;
}

.profile-sticky {
  position: sticky;
  top: var(--profile-pin-top);
  align-self: start;
  display: grid;
  align-items: start;
  min-height: calc(100vh - var(--profile-pin-top));
}

.profile-phone {
  width: min(380px, 100%);
}

.profile-phone__shell {
  position: relative;
  aspect-ratio: 364 / 750;
}

.profile-screen-window {
  position: absolute;
  overflow: hidden;
  inset: 1.55% 3.35% 1.45% 3.35%;
  border-radius: 41px;
  background: #111;
  z-index: 1;
}

.profile-screen-image {
  display: block;
  width: 100%;
  height: auto;
  transform: translate3d(0, calc(var(--profile-image-offset) * -1), 0);
  will-change: transform;
}

.profile-phone__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}

.profile-steps {
  position: relative;
  display: grid;
  gap: clamp(280px, 52vh, 540px);
  padding: 12vh 0 46vh;
}

.profile-steps::before {
  content: '';
  position: absolute;
  top: 12vh;
  bottom: 46vh;
  left: 30px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.profile-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 34px;
  align-items: start;
  max-width: 680px;
}

.profile-step__index {
  position: relative;
  z-index: 1;
  margin-top: 2px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.25s ease;
}

.profile-step__content {
  padding-top: 6px;
}

.profile-step__label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.profile-step h3 {
  margin: 0 0 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.68);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.profile-step p:last-child {
  margin: 0;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.06rem;
  line-height: 1.7;
  transition: color 0.25s ease;
}

.profile-step.is-active .profile-step__index {
  color: #fff;
}

.profile-step.is-active .profile-step__label {
  color: var(--accent);
}

.profile-step.is-active h3 {
  color: #fff;
  transform: translateY(-2px);
}

.profile-step.is-active p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

@keyframes client-strip-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 72px 0 0;
}

.section--showcase {
  position: relative;
  padding-top: 54px;
  margin-top: 24px;
  padding-bottom: 18px;
  color: #0c0b0b;
  z-index: 0;
}

.section--showcase .eyebrow,
.section--showcase .metric-label,
.section--showcase .mini-label {
  color: rgba(12, 11, 11, 0.7);
}

.section--showcase .section-heading p,
.section--showcase .showcase-stat span,
.section--showcase .story-step__body p {
  color: rgba(12, 11, 11, 0.76);
}

.section--showcase .showcase-stat,
.section--showcase .story-step {
  border-color: rgba(12, 11, 11, 0.08);
}

.section--showcase::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.04), transparent 22%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.03), transparent 20%),
    linear-gradient(180deg, #92b329 0%, #76951b 100%);
  box-shadow: 0 20px 52px rgba(118, 149, 27, 0.08);
  z-index: -1;
}

.showcase-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1.56fr);
  gap: 26px;
  align-items: center;
}

.story-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1.56fr);
  gap: 26px;
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.showcase-stat {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
}

.showcase-stat strong,
.device-caption strong,
.mini-panel__content h3 {
  display: block;
  margin-bottom: 8px;
}

.showcase-stat span,
.mini-label {
  color: var(--muted);
}

.story-track {
  position: relative;
  min-height: 340vh;
  --story-pin-top: 96px;
  --story-card-gap: 18px;
  --story-flow-gap: clamp(180px, 26vh, 320px);
  --story-stack-hold: clamp(120px, 18vh, 220px);
  --story-step-padding: 24px;
  --story-step-stuck-padding: 16px;
  --story-step-collapse-range: 92;
  --story-cluster-progress: 0;
}

.story-sticky {
  position: sticky;
  top: var(--story-pin-top);
  display: grid;
  align-items: start;
  min-height: 100vh;
  transform: translateY(calc(-1vh * var(--story-cluster-progress, 0)));
  transition: transform 0.2s linear;
}

.story-phone {
  position: absolute;
  top: 0;
  left: 0;
  width: min(360px, calc((100vh - 200px) * 0.485));
  z-index: 2;
}

.story-phone__shell {
  position: relative;
  height: calc(100vh - 180px);
  aspect-ratio: 364 / 750;
}

.story-screen-stack {
  position: absolute;
  overflow: hidden;
  inset: 1.55% 3.35% 1.45% 3.35%;
  min-height: 0;
  border-radius: 41px;
  background: #161616;
  z-index: 1;
}

.story-screen {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(100%);
  transition:
    opacity 0.42s ease,
    transform 0.62s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}

.story-screen.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 3;
}

.story-screen.is-leaving {
  opacity: 1;
  transform: translateX(-28%);
  z-index: 2;
}

.story-screen.is-returning {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.story-screen.is-leaving-right {
  opacity: 1;
  transform: translateX(100%);
  z-index: 3;
}

.story-screen img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
  border-radius: 41px;
  transform: scale(1.02);
  transform-origin: center top;
}

.story-phone__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}

.story-screen-cluster {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.story-screen-cluster__item {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(60%, 240px);
  aspect-ratio: 364 / 750;
  opacity: 0;
  transform: translate3d(0, 52%, 0) scale(0.42);
  transform-origin: center bottom;
  transition:
    opacity 0.45s ease,
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.story-screen-cluster__screen {
  position: absolute;
  inset: 1.55% 3.35% 1.45% 3.35%;
  overflow: hidden;
  border-radius: 18px;
  background: #161616;
}

.story-screen-cluster__screen img,
.story-screen-cluster__frame {
  display: block;
  width: 100%;
  height: 100%;
}

.story-screen-cluster__screen img {
  object-fit: cover;
  object-position: top center;
}

.story-screen-cluster__frame {
  object-fit: contain;
}

.story-phone--expanded .story-screen-stack,
.story-phone--expanded .story-phone__frame {
  opacity: 0.18;
  transform: scale(0.9);
  transition:
    opacity 0.4s ease,
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.story-phone--expanded .story-screen-cluster__item {
  opacity: 1;
}

.story-phone--expanded .story-screen-cluster__item--one {
  transform:
    translate3d(calc(-96% - 78% * var(--story-cluster-progress)),
      calc(4% - 4% * var(--story-cluster-progress)),
      0) scale(calc(0.9 + 0.12 * var(--story-cluster-progress))) rotate(calc(-10deg - 12deg * var(--story-cluster-progress)));
}

.story-phone--expanded .story-screen-cluster__item--two {
  transform:
    translate3d(0,
      calc(0% - 6% * var(--story-cluster-progress)),
      0) scale(calc(1 + 0.14 * var(--story-cluster-progress))) rotate(0deg);
}

.story-phone--expanded .story-screen-cluster__item--three {
  transform:
    translate3d(calc(96% + 78% * var(--story-cluster-progress)),
      calc(6% - 4% * var(--story-cluster-progress)),
      0) scale(calc(0.9 + 0.12 * var(--story-cluster-progress))) rotate(calc(10deg + 12deg * var(--story-cluster-progress)));
}

.story-steps {
  margin-left: min(430px, 46%);
  padding: 14vh 0 calc(38vh + var(--story-track-end-space, 0px));
  transform: translateX(calc(18vw * var(--story-cluster-progress, 0)));
  transition: transform 0.2s linear;
}

.story-step+.story-step {
  margin-top: var(--story-flow-gap);
}

.story-step {
  position: sticky;
  top: var(--story-step-top, var(--story-pin-top));
  max-width: 360px;
  padding-top: var(--story-step-current-padding, var(--story-step-padding));
  padding-right: var(--story-step-padding);
  padding-bottom: var(--story-step-current-padding, var(--story-step-padding));
  padding-left: var(--story-step-padding);
  border-radius: var(--radius-lg);
  --story-card-bg: #ffe6d9;
  --story-card-bg-active: #ffdacc;
  --story-card-border: rgba(176, 103, 68, 0.2);
  border: 1px solid var(--story-card-border);
  background: var(--story-card-bg);
  box-shadow: 0 24px 54px rgba(83, 49, 22, 0.14);
  z-index: var(--story-step-z, 1);
}

.story-step:nth-child(2) {
  --story-card-bg: #dff6e6;
  --story-card-bg-active: #d3efdc;
  --story-card-border: rgba(77, 136, 91, 0.2);
}

.story-step:nth-child(3) {
  --story-card-bg: #e5ebff;
  --story-card-bg-active: #d8e2ff;
  --story-card-border: rgba(87, 110, 184, 0.2);
}

.story-step.is-active {
  background: var(--story-card-bg-active);
  border-color: var(--story-card-border);
  box-shadow: 0 28px 70px rgba(83, 49, 22, 0.18);
}

.story-step.is-stuck {
  background: var(--story-card-bg);
  border-color: var(--story-card-border);
  box-shadow: 0 22px 46px rgba(83, 49, 22, 0.14);
}

.story-step.is-stuck.is-active {
  background: var(--story-card-bg-active);
  border-color: var(--story-card-border);
  box-shadow: 0 24px 52px rgba(83, 49, 22, 0.16);
}

.story-step--ghost {
  visibility: hidden;
  pointer-events: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.story-step--ghost.is-stuck,
.story-step--ghost.is-active,
.story-step--ghost.is-stuck.is-active {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.story-step__header {
  display: grid;
  gap: 6px;
}

.story-step__body {
  overflow: hidden;
  max-height: var(--story-step-body-max-height, 160px);
  opacity: var(--story-step-body-opacity, 1);
  transform: translateY(var(--story-step-body-offset, 0px));
}

.story-step h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.story-step__body p:last-child {
  margin-bottom: 0;
  color: #0c0b0b;
}

.browser-shell,
.mini-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 27, 22, 0.14);
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 30px 80px rgba(83, 49, 22, 0.18);
}

.device-topbar,
.browser-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.browser-shell {
  border-radius: 28px;
  padding: 16px;
  background: rgba(255, 251, 246, 0.96);
}

.browser-shell img {
  display: block;
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 20px;
}

.browser-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e8c0a8;
}

.mini-panel {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.94), rgba(255, 239, 228, 0.9));
}

.mini-panel img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.mini-panel__content {
  padding: 22px;
}

.mini-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.78rem;
}

.mini-panel__content h3 {
  font-size: 1.35rem;
  margin: 0 0 14px;
}

.mini-panel__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.device-caption {
  padding: 14px 8px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.split-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 16px;
}

.feature-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.outcome-card,
.pricing-card,
.info-card,
.demo-form,
.faq-list details,
.footer {
  padding: 24px;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: start;
}

.outcome-list {
  display: grid;
  gap: 18px;
}

.section--integrations {
  padding-top: 56px;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.integration-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(208, 253, 62, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.integration-card::before {
  content: '';
  position: absolute;
  inset: auto -8% -26% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.5;
  pointer-events: none;
}

.integration-card--razorpay::before {
  background: rgba(74, 110, 255, 0.2);
}

.integration-card--essl::before {
  background: rgba(208, 253, 62, 0.14);
}

.integration-card--whatsapp::before {
  background: rgba(37, 211, 102, 0.16);
}

.integration-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 60px;
  border-radius: 18px;
  padding: 8px 12px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.integration-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.integration-badge--payments {
  box-shadow: 0 14px 28px rgba(45, 87, 255, 0.16);
}

.integration-badge--biometric {
  box-shadow: 0 14px 28px rgba(208, 253, 62, 0.14);
}

.integration-badge--whatsapp {
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.14);
}

.integration-card__eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.integration-card h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.08;
}

.integration-card>p {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.75;
}

.integration-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.integration-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(180deg, rgba(24, 24, 26, 0.96), rgba(14, 14, 16, 0.96));
  border-color: rgba(208, 253, 62, 0.12);
}

.pricing-card .pricing-card__label {
  color: rgba(208, 253, 62, 0.9);
}

.pricing-card h3 {
  color: rgba(255, 255, 255, 0.96);
}

.pricing-card__price {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing-card ul,
.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}

.pricing-card--featured {
  background:
    radial-gradient(circle at top right, rgba(208, 253, 62, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(34, 40, 18, 0.98), rgba(18, 22, 12, 0.98));
  border-color: rgba(208, 253, 62, 0.28);
  transform: translateY(-12px);
}

.pricing-card--featured .pricing-card__label,
.pricing-card--featured .pricing-card__price,
.pricing-card--featured h3 {
  color: #f4ffd0;
}

.pricing-card li {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-card .button--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(208, 253, 62, 0.2);
}

.pricing-card .button--secondary:hover,
.pricing-card .button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.section--demo .demo-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: start;
}

.demo-copy {
  display: grid;
  gap: 18px;
}

.info-card {
  background: linear-gradient(180deg, rgba(24, 24, 26, 0.96), rgba(14, 14, 16, 0.96));
  border-color: rgba(208, 253, 62, 0.12);
}

.info-card--contact p {
  margin: 0;
}

.info-card--contact a {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.info-card--contact a:hover,
.info-card--contact a:focus-visible {
  color: var(--accent);
}

.demo-form {
  background: linear-gradient(180deg, rgba(24, 24, 26, 0.98), rgba(12, 12, 14, 0.98));
  border-color: rgba(208, 253, 62, 0.14);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.field-span-2 {
  grid-column: 1 / -1;
}

.demo-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1px solid rgba(208, 253, 62, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.94);
  padding: 14px 16px;
  font: inherit;
  color-scheme: dark;
  caret-color: var(--accent);
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.demo-form select,
.demo-form option {
  color: rgba(255, 255, 255, 0.94);
}

.demo-form option {
  background: #111214;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: 2px solid rgba(208, 253, 62, 0.16);
  border-color: rgba(208, 253, 62, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-weight: 700;
}

.form-status.is-success {
  color: #8df0b5;
}

.form-status.is-error {
  color: #ff9b9b;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
}

.footer {
  margin-top: 72px;
  padding: clamp(34px, 4vw, 52px);
  background:
    radial-gradient(circle at top right, rgba(208, 253, 62, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(18, 18, 20, 0.98), rgba(10, 10, 12, 0.98));
  border: 1px solid rgba(208, 253, 62, 0.12);
  border-radius: 32px;
}

.footer__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(120px, 0.72fr));
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

.footer__brand-block {
  display: grid;
  gap: 24px;
  max-width: 340px;
}

.footer__column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer__column-title {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer__summary {
  margin: 0;
  max-width: 17ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  line-height: 1.7;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__social-icon:hover,
.footer__social-icon:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer__column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__logo {
  display: block;
  width: clamp(38px, 4.8vw, 52px);
  height: auto;
}

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

.footer__title {
  display: block;
  width: clamp(104px, 12vw, 160px);
  height: auto;
}

.footer__copyright {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.footer__column a:hover,
.footer__column a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.chatbot {
  position: fixed;
  top: 86px;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 14px;
}

.chatbot__panel {
  width: min(380px, calc(100vw - 32px));
  height: 100%;
  max-height: none;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(208, 253, 62, 0.16);
  border-radius: 0;
  background:
    radial-gradient(circle at top right, rgba(208, 253, 62, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(20, 22, 25, 0.98), rgba(10, 12, 14, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.chatbot__panel[hidden] {
  display: none !important;
}

.chatbot__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chatbot__header h2 {
  margin: 4px 0 8px;
  font-size: 1.3rem;
  line-height: 1.05;
}

.chatbot__header p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
}

.chatbot__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chatbot__close,
.chatbot__toggle,
.chatbot__chips button,
.chatbot__send {
  font: inherit;
  cursor: pointer;
}

.chatbot__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.chatbot__close:hover,
.chatbot__close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.chatbot__messages {
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  padding: 18px 20px 12px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.chatbot__message {
  display: grid;
  gap: 6px;
  max-width: 88%;
}

.chatbot__message--bot {
  justify-self: start;
}

.chatbot__message--user {
  justify-self: end;
}

.chatbot__bubble {
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.65;
  font-size: 0.88rem;
  font-weight: 300;
}

.chatbot__bubble strong {
  font-weight: 700;
  color: inherit;
}

.chatbot__bubble p,
.chatbot__bubble ul,
.chatbot__bubble ol {
  margin: 0 0 0.55rem;
}

.chatbot__bubble p:last-child,
.chatbot__bubble ul:last-child,
.chatbot__bubble ol:last-child {
  margin-bottom: 0;
}

.chatbot__bubble ul,
.chatbot__bubble ol {
  padding-left: 1.1rem;
}

.chatbot__bubble li+li {
  margin-top: 0.3rem;
}

.chatbot__bubble--lead {
  padding-bottom: 14px;
}

.chatbot__lead-form {
  display: grid;
  gap: 0.75rem;
}

.chatbot__lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.chatbot__lead-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 400;
}

.chatbot__lead-form label span {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}

.chatbot__lead-form input,
.chatbot__lead-form select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 12px;
  font: inherit;
  font-weight: 300;
  outline: none;
}

.chatbot__lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.chatbot__lead-form input:focus-visible,
.chatbot__lead-form select:focus-visible {
  border-color: rgba(238, 192, 91, 0.78);
  box-shadow: 0 0 0 3px rgba(238, 192, 91, 0.14);
}

.chatbot__lead-span-2 {
  grid-column: 1 / -1;
}

.chatbot__lead-submit {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #0b0c0d;
  font: inherit;
  font-weight: 700;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.chatbot__lead-submit:hover,
.chatbot__lead-submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(238, 192, 91, 0.22);
}

.chatbot__lead-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.chatbot__lead-status {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.chatbot__lead-status.is-success {
  color: #9ae6b4;
}

.chatbot__lead-status.is-error {
  color: #fda4af;
}

.chatbot__message--bot .chatbot__bubble {
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.chatbot__message--user .chatbot__bubble {
  color: #0b0c0d;
  background: var(--accent);
}

.chatbot__source,
.chatbot__status {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  line-height: 1.5;
}

.chatbot__message--user .chatbot__source {
  text-align: right;
}

.chatbot__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 14px;
}

.chatbot__chips[hidden] {
  display: none !important;
}

.chatbot__chips button {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.chatbot__chips button:hover,
.chatbot__chips button:focus-visible {
  border-color: rgba(208, 253, 62, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.chatbot__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0 20px 12px;
}

.chatbot__field {
  min-width: 0;
}

.chatbot__field textarea {
  width: 100%;
  min-height: 48px;
  max-height: 108px;
  resize: vertical;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  line-height: 1.4;
}

.chatbot__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.chatbot__field textarea:focus-visible {
  outline: 0;
  border-color: rgba(208, 253, 62, 0.3);
  box-shadow: 0 0 0 3px rgba(208, 253, 62, 0.08);
}

.chatbot__send,
.chatbot__toggle {
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.chatbot__send {
  align-self: end;
  min-width: 82px;
  height: 48px;
  padding: 0 18px;
  color: #0b0c0d;
  background: var(--accent);
}

.chatbot__toggle {
  min-height: 54px;
  padding: 0 20px;
  color: #0b0c0d;
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.chatbot.is-open .chatbot__toggle {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  display: none;
}

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

.chatbot__status {
  padding: 0 20px 18px;
}

.chatbot__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

  .client-strip__track--animated {
    animation: none;
  }

  .platform-card--web,
  .platform-card--desktop {
    animation: none;
  }
}

@media (max-width: 980px) {

  .topbar,
  .hero,
  .showcase-stage,
  .story-showcase,
  .section--split,
  .section--demo .demo-layout,
  .pricing-grid,
  .feature-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .topnav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero__panel {
    justify-content: flex-start;
  }

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

  .footer__brand-block {
    grid-column: 1 / -1;
    max-width: 420px;
  }

  .hero-video-card {
    transform: none;
  }

  .story-track {
    min-height: auto;
    --story-flow-gap: 18px;
  }

  .story-sticky {
    position: relative;
    top: auto;
    min-height: auto;
    transform: none;
  }

  .story-phone {
    position: relative;
    top: auto;
    width: min(360px, 100%);
  }

  .story-phone__shell {
    height: auto;
  }

  .story-screen-stack {
    inset: 1.55% 3.35% 1.45% 3.35%;
    aspect-ratio: auto;
    min-height: auto;
  }

  .story-screen img {
    min-height: auto;
  }

  .story-screen-cluster {
    display: none;
  }

  .story-steps {
    margin-left: 0;
    padding: 24px 0 0;
    transform: none;
  }

  .story-step,
  .story-step {
    position: relative;
    top: auto;
    z-index: auto;
  }

  .story-step+.story-step {
    margin-top: 18px;
  }

  .story-step.is-active {
    transform: none;
  }

  .story-step.is-stuck {
    padding-top: var(--story-step-padding);
    padding-bottom: var(--story-step-padding);
  }

  .story-step__body,
  .story-step.is-stuck .story-step__body {
    max-height: none;
    opacity: 1;
  }

  .glass-card {
    transform: none;
  }

  .pricing-card--featured {
    transform: none;
  }

  .browser-shell img {
    min-height: auto;
  }

  .client-strip::before,
  .client-strip::after {
    width: 56px;
  }

  .client-strip__logo-card {
    width: 164px;
    height: 76px;
  }

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

  .platform-showcase {
    grid-template-columns: 1fr;
  }

  .platform-visuals {
    min-height: auto;
    gap: 18px;
  }

  .platform-card,
  .platform-card--web,
  .platform-card--desktop {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .profile-story {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  .profile-sticky {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .profile-phone {
    width: min(360px, 100%);
    margin: 0 auto;
  }

  .profile-steps {
    gap: 28px;
    padding: 8px 0 0;
  }

  .profile-steps::before {
    display: none;
  }

  .profile-step {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    max-width: none;
  }

  .profile-step__content {
    padding-top: 0;
  }

  .profile-step h3,
  .profile-step p:last-child {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .topbar {
    padding: 14px 16px;
  }

  .topnav,
  .topbar>.button--ghost {
    display: none;
  }

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

  .hero h1 {
    max-width: none;
  }

  .story-phone {
    width: min(320px, 100%);
  }

  .client-strip {
    padding: 10px 12px;
  }

  .client-strip::before,
  .client-strip::after {
    width: 34px;
  }

  .client-strip__group {
    gap: 30px;
    padding-right: 30px;
  }

  .client-strip__logo-card {
    width: 76px;
    height: 76px;
    padding: 6px;
    border-radius: 14px;
  }

  .section--platforms {
    padding-top: 28px;
  }

  .section--integrations {
    padding-top: 40px;
  }

  .section--profile-story {
    padding-top: 56px;
  }

  .platform-showcase {
    padding: 18px;
    gap: 20px;
    border-radius: 22px;
  }

  .platform-card {
    padding: 12px;
    border-radius: 20px;
  }

  .platform-card__badge {
    margin-bottom: 10px;
  }

  .platform-card img {
    border-radius: 14px;
  }

  .integration-card {
    padding: 20px;
    border-radius: 22px;
  }

  .integration-card__head {
    align-items: flex-start;
  }

  .integration-badge {
    width: 108px;
    height: 54px;
    border-radius: 16px;
    padding: 8px 12px;
  }

  .profile-phone {
    width: min(320px, 100%);
  }

  .profile-step__index {
    font-size: 1.45rem;
  }

  .footer {
    padding: 28px 22px;
  }

  .footer__layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer__brand-block {
    max-width: 360px;
  }

  .footer__socials {
    gap: 12px;
  }

  .footer__copyright {
    margin-top: 24px;
    padding-top: 18px;
    font-size: 0.8rem;
  }

  .chatbot {
    top: 74px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: stretch;
  }

  .chatbot__panel {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .chatbot__toggle {
    align-self: flex-end;
  }

  .chatbot__header,
  .chatbot__messages,
  .chatbot__chips,
  .chatbot__form,
  .chatbot__status {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .chatbot__send {
    width: 100%;
  }

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