
:root {
  --color-dark: #201d1d;
  --color-light: #f4f4f4;
  --color-surface: #ffffff;
  --color-muted: #6f6964;
  --color-border: rgba(32, 29, 29, 0.12);
  --color-border-strong: rgba(32, 29, 29, 0.24);
  --color-electric: #d6ff3f;
  --color-purple: #7f5cff;
  --color-track: #cbc3bd;
  --container: 82rem;
  --container-tight: 66rem;
  --container-padding: 1.875rem;
  --stroke: 1px;
  --hero-gap: clamp(1.25rem, 2vw, 2rem);
  --section-gap: clamp(4.5rem, 7vw, 7.5rem);
  --card-radius: 0.3125rem;
  --card-radius-inner: 0.1875rem;
  --pill-radius: 10rem;
  --transition: 200ms ease;
  --shadow-card: 0 18px 40px rgba(32, 29, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-dark);
  background: var(--color-light);
  font-family: "Haffer XH", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

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

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

.page-shell {
  overflow: clip;
}

.container {
  width: min(100%, calc(var(--container) + (var(--container-padding) * 2)));
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

.container--hero {
  max-width: 74rem;
}

.container--narrow {
  max-width: 76rem;
}

.container--info {
  max-width: 80rem;
}

.section-heading {
  max-width: 54rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h3 {
  margin: 0.75rem 0 0;
  letter-spacing: -0.04em;
  font-family: "Haffer XH", Arial, sans-serif;
  font-size: clamp(2.5rem, 4.2vw, 3.875rem);
  font-weight: 400;
  line-height: 1;
}

.section-heading__lead {
  max-width: 40rem;
  margin: 1rem auto 0;
  font-variation-settings: "wght" 430;
  letter-spacing: -0.01em;
  font-size: 1rem;
  line-height: 1.3;
}

.hero-section {
  position: relative;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--color-light);
  isolation: isolate;
  min-height: 100svh;
  overflow: clip;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-section .container--hero {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.hero-topline {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-bottom: var(--stroke) solid var(--color-border);
}

.hero-topline__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
  padding: 0.6875rem 1rem;
  font-family: "Courier New", monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
}

.hero-topline__track span {
  white-space: normal;
}

.hero-topline__divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1rem;
  line-height: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.hero-bg__line {
  width: var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(203, 195, 189, 0.08) 0%,
    rgba(203, 195, 189, 0.22) 18%,
    rgba(203, 195, 189, 0.16) 50%,
    rgba(203, 195, 189, 0.22) 82%,
    rgba(203, 195, 189, 0.08) 100%
  );
  height: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  padding-top: clamp(5rem, 7vw, 6.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  will-change: transform, opacity;
  transform-origin: 50% 35%;
}

.hero-kicker,
.info-heading__scribble {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-dark);
}

.scribble {
  margin: 0;
  font-family: "Brisa Pro", Arial, sans-serif;
  font-size: 1.5625rem;
  line-height: 0.8;
}

.scribble-arrow {
  width: 2rem;
  flex: none;
}

.hero-title {
  max-width: 74rem;
  margin-top: 1rem;
}

.display-title {
  margin: 0;
  letter-spacing: -0.06em;
  font-family: "Haffer XH", Arial, sans-serif;
  font-size: clamp(2.6rem, 5.1vw, 4.7rem);
  font-weight: 400;
  line-height: 1;
  text-wrap: normal;
}

.display-title span {
  display: block;
}

.display-title .hero-accent {
  display: inline;
}

.hero-accent {
  color: var(--color-purple);
}

.hero-lead {
  width: min(100%, 40rem);
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.hero-lead p {
  margin: 0;
  font-variation-settings: "wght" 430;
  letter-spacing: -0.01em;
  font-size: 1rem;
  line-height: 1.3;
}

.hero-lead strong {
  font-variation-settings: "wght" 620;
  font-weight: 700;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: min(100%, 42rem);
  margin-top: 1.5rem;
  will-change: transform, opacity;
  transform-origin: 50% 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-scroll-hint {
  display: none;
}

.hero-short {
  width: min(100%, 18rem);
  margin-top: 1.5rem;
}

.hero-short__poster,
.hero-short__frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 1rem;
  background: #121010;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
}

.hero-short__poster {
  position: relative;
  padding: 0;
  cursor: pointer;
}

.hero-short__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-short__poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-short__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.8rem;
  height: 4.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-dark);
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  z-index: 1;
}

.hero-short__play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.22rem;
  border-top: 0.78rem solid transparent;
  border-bottom: 0.78rem solid transparent;
  border-left: 1.18rem solid currentColor;
}

.hero-short__play {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(32, 29, 29, 0.82);
  color: #f4f4f4;
  font-family: "Haffer XH", Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  z-index: 1;
}

.hero-short__play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.42rem solid transparent;
  border-bottom: 0.42rem solid transparent;
  border-left: 0.68rem solid currentColor;
}

.hero-actions {
  margin-top: 2rem;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 1.25rem 0.0625rem;
  color: var(--color-dark);
  overflow: hidden;
  border-radius: 0.125rem;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(214, 255, 63, 0) 0deg,
    rgba(214, 255, 63, 0.9) 90deg,
    rgba(214, 255, 63, 0) 180deg,
    rgba(127, 92, 255, 0.65) 270deg,
    rgba(214, 255, 63, 0) 360deg
  );
  opacity: 0.95;
  animation: ctaRingSpin 2.8s linear infinite;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.cta-button__bg {
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: var(--color-electric);
  transition: transform var(--transition), background-color var(--transition);
}

.cta-button__label {
  position: relative;
  z-index: 1;
  font-variation-settings: "wght" 500;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  line-height: 1;
}

.cta-button:hover .cta-button__bg,
.cta-button:focus-visible .cta-button__bg {
  transform: translateY(-6%);
}

.cta-button--dark {
  color: var(--color-light);
}

.cta-button--dark .cta-button__bg {
  background: var(--color-dark);
}

.hero-video-section {
  position: relative;
  z-index: 3;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--color-dark);
  color: var(--color-light);
  will-change: transform;
}

.hero-video-section .section-heading {
  max-width: 54rem;
  margin: 0 auto;
  text-align: center;
}

.hero-video-section .section-heading h3 {
  color: var(--color-light);
}

.hero-video-feature {
  width: min(100%, 24rem);
  margin: 2rem auto 0;
}

.hero-video-feature .hero-short {
  width: 100%;
  margin-top: 0;
}

.hero-video-feature .hero-short__poster,
.hero-video-feature .hero-short__frame {
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.hero-video-section .hero-actions {
  text-align: center;
}

.hero-marquee-caption {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-showcase {
  position: relative;
  background: var(--color-dark);
  color: var(--color-light);
  padding: clamp(5rem, 8vw, 7rem) 0 clamp(5rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 244, 244, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 244, 244, 0.05) 1px, transparent 1px);
  background-size: 2.25rem 2.25rem;
  opacity: 0.32;
  pointer-events: none;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(127, 92, 255, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero-marquee-caption h2 {
  margin: 0;
  letter-spacing: -0.03em;
  font-family: "Haffer XH", Arial, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.875rem);
  font-weight: 400;
  line-height: 1.02;
}

.hero-showcase .hero-marquee-caption h2 {
  color: var(--color-light);
}

.hero-video-wrap {
  width: min(100%, 90rem);
  margin: 2.25rem auto 0;
  position: relative;
  z-index: 2;
}

.hero-filmstrip {
  display: grid;
  gap: 1.35rem;
}

.hero-filmstrip__viewport {
  position: relative;
  overflow: hidden;
  padding: 0.35rem 0;
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}

.hero-filmstrip__row {
  display: flex;
  width: max-content;
  gap: 1.35rem;
  animation: heroFilmstripMove 42s linear infinite;
}

.hero-filmstrip__row--reverse {
  animation-direction: reverse;
  animation-duration: 46s;
  margin-left: -8rem;
}

.hero-video-card {
  display: block;
  flex: none;
  width: min(23rem, 42vw);
  min-width: min(23rem, 42vw);
  max-width: min(23rem, 42vw);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  padding: 0.4rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.hero-video-card__media {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  background: #121010;
  border-radius: 1rem;
  pointer-events: none;
}

.hero-filmstrip:hover .hero-filmstrip__row {
  animation-play-state: paused;
}

.hero-video-card__media::-webkit-media-controls,
.hero-video-card__media::-webkit-media-controls-panel,
.hero-video-card__media::-webkit-media-controls-play-button,
.hero-video-card__media::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0 !important;
  -webkit-appearance: none;
}

@keyframes heroFilmstripMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 0.675rem), 0, 0);
  }
}

.tag-pill__bg {
  position: absolute;
  inset: 0;
  background: var(--color-electric);
}

.tag-pill__label {
  position: relative;
  z-index: 1;
  font-family: "Haffer Mono", Arial, sans-serif;
  font-size: 0.6875rem;
  line-height: 1;
}

.offer-card-section,
.steps-section,
.fit-section,
.contrast-band-section,
.pricing-section,
.guarantee-section,
.compare-section,
.faq-section {
  padding: var(--section-gap) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.deliverables-section {
  padding-top: calc(var(--section-gap) * 0.32);
}

.pricing-section {
  padding-bottom: calc(var(--section-gap) * 0.45);
}

.guarantee-section {
  padding-top: calc(var(--section-gap) * 0.45);
  padding-bottom: calc(var(--section-gap) * 0.45);
}

.compare-section {
  padding-top: calc(var(--section-gap) * 0.45);
}

.deliverables-section {
  transition: background-color 320ms ease, color 320ms ease;
}

.offer-card {
  color: var(--color-light);
  background: var(--color-dark);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.offer-card__eyebrow {
  padding: 1.5rem 1.5rem 0;
  color: var(--color-electric);
}

.offer-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 1.5rem;
}

.offer-card__head h3,
.pricing-frame__copy h3 {
  margin: 0;
  letter-spacing: -0.04em;
  font-family: "Haffer XH", Arial, sans-serif;
  font-size: clamp(2.3rem, 3.8vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
}

.offer-card__content {
  display: grid;
  gap: 1.5rem;
}

.offer-checklist {
  display: grid;
  gap: 0;
  border-top: var(--stroke) solid rgba(244, 244, 244, 0.16);
}

.offer-checklist__item {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0;
  border-bottom: var(--stroke) solid rgba(244, 244, 244, 0.16);
}

.js .offer-checklist__item[data-reveal] {
  transform: translateY(2.2rem);
}

.offer-checklist__icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-dark);
  background: var(--color-electric);
  border-radius: 50%;
  font-family: "Haffer Mono", Arial, sans-serif;
  font-size: 0.875rem;
}

.offer-checklist__item p,
.deliverable-item p,
.fit-item p,
.compare-card__list p,
.faq-item p,
.step-card p,
.guarantee-card p,
.pricing-benefit p {
  margin: 0;
  font-variation-settings: "wght" 430;
  letter-spacing: -0.01em;
  font-size: 1rem;
  line-height: 1.3;
}

.steps-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(32, 29, 29, 0.03), rgba(32, 29, 29, 0.01));
  border: 1px solid rgba(32, 29, 29, 0.12);
  border-radius: 1.15rem;
  box-shadow: 0 18px 34px rgba(32, 29, 29, 0.06);
  min-height: 100%;
  transition:
    background 320ms ease,
    color 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    transform 320ms ease;
}

.step-card.is-active {
  color: var(--color-dark);
  background: var(--color-electric);
  border-color: var(--color-electric);
  box-shadow: 0 26px 48px rgba(32, 29, 29, 0.12);
  transform: translateY(-0.2rem);
}

.step-card__top {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.step-card__number,
.fit-item__index {
  color: rgba(32, 29, 29, 0.5);
  font-family: "Haffer Mono", Arial, sans-serif;
  font-size: 0.75rem;
  line-height: 1;
}

.step-card.is-active .step-card__number {
  color: var(--color-dark);
}

.step-card.is-active h4,
.step-card.is-active p {
  color: var(--color-dark);
}

.step-card h4,
.deliverable-item h4,
.fit-item h4,
.compare-card h4,
.faq-item summary {
  margin: 0;
  font-variation-settings: "wght" 550;
  letter-spacing: -0.02em;
  font-size: 1.1875rem;
  line-height: 1.2;
}

.step-card p + p {
  margin-top: 0.75rem;
}

.deliverables-list,
.fit-list,
.faq-list {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

.deliverable-item,
.fit-item,
.faq-item {
  padding: 1.5rem 0;
  border-top: var(--stroke) solid var(--color-border-strong);
}

.deliverables-stage {
  position: relative;
  min-height: 190vh;
  margin-top: 1rem;
}

.deliverables-sticky {
  position: sticky;
  top: 3.5rem;
  overflow: hidden;
  min-height: calc(100vh - 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.deliverables-heading {
  max-width: 54rem;
  width: 100%;
  margin: 0;
  margin-inline: auto;
  text-align: center;
}

.deliverables-list {
  margin-top: 0;
  position: relative;
  width: 100%;
  min-height: 33rem;
}

.deliverables-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.deliverable-item {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  width: calc((100% - 2.4rem) / 4.35);
  padding: 0.75rem 0.75rem 1.75rem;
  background: rgba(32, 29, 29, 0.03);
  border: 1px solid rgba(32, 29, 29, 0.08);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 30px 62px rgba(32, 29, 29, 0.16);
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0, 6rem, 0);
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
}

.deliverable-item__media {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--color-dark);
  aspect-ratio: 1.08 / 1;
}

.deliverable-item__media:not(.deliverable-item__media--publish) {
  background: transparent;
  aspect-ratio: auto;
}

.deliverable-item__video {
  width: 100%;
  height: auto;
  object-fit: fill;
  background: transparent;
  display: block;
}

.deliverable-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: transparent;
}

.deliverables-list .deliverable-item {
  gap: 1.1rem;
}

.deliverables-list .deliverable-item h4 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.25rem;
  line-height: 1.15;
}

.deliverable-item__number {
  width: 1.7rem;
  height: 1.7rem;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.35rem;
  background: #4b5563;
  color: var(--color-light);
  font-family: "Haffer Mono", Arial, sans-serif;
  font-size: 0.8rem;
  line-height: 1;
}

.deliverables-list .deliverable-item .deliverable-item__media {
  border: 1px solid rgba(32, 29, 29, 0.1);
  border-radius: 0.55rem;
  background: #f8f8f8;
}

.deliverables-list .deliverable-item .deliverable-item__media--publish {
  border: 0;
  background: transparent;
  aspect-ratio: auto;
}

.deliverables-list .deliverable-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.deliverable-item .deliverable-item__media + p {
  margin-top: -0.15rem;
}

.deliverable-item__media--publish {
  background:
    radial-gradient(circle at 50% 18%, rgba(245, 245, 245, 0.1), transparent 46%),
    linear-gradient(140deg, #141111 0%, #242020 100%);
}

.publish-demo {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  display: block;
}

.publish-demo__editor {
  width: 100%;
  min-height: auto;
  background: linear-gradient(180deg, rgba(19, 18, 18, 0.98), rgba(30, 28, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.95rem;
  padding: 0.72rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 0.55rem;
}

.publish-demo__browser {
  display: flex;
  align-items: center;
  gap: 0.26rem;
  min-width: 0;
  padding: 0.34rem 0.42rem;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
}

.publish-demo__browser span {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.publish-demo__browser i {
  position: relative;
  display: block;
  flex: 1;
  height: 0.28rem;
  margin-left: 0.25rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.publish-demo__browser i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(245, 245, 245, 0.12), rgba(245, 245, 245, 0.5));
  animation: publishBarTravel 3.2s ease-in-out infinite;
}

.publish-demo__canvas {
  min-height: 5.45rem;
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at 50% 34%, rgba(245, 245, 245, 0.08), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  padding: 0.78rem;
  display: grid;
  place-items: center;
}

.publish-demo__canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  animation: publishSweep 4s ease-in-out infinite;
}

.publish-demo__page {
  position: relative;
  z-index: 1;
  width: min(58%, 7.15rem);
  min-height: 3.85rem;
  padding: 0.55rem;
  border-radius: 0.68rem;
  background: rgba(245, 245, 245, 0.94);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 0.34rem;
  animation: publishPageFloat 3.4s ease-in-out infinite;
}

.publish-demo__page-line {
  height: 0.3rem;
  border-radius: 999px;
  background: rgba(24, 21, 21, 0.16);
}

.publish-demo__page-line--short {
  width: 54%;
  height: 0.44rem;
  background: rgba(24, 21, 21, 0.28);
}

.publish-demo__page-card {
  min-height: 1.05rem;
  border-radius: 0.36rem;
  background: rgba(24, 21, 21, 0.1);
}

.publish-demo__page-card--wide {
  min-height: 1.25rem;
  background: rgba(24, 21, 21, 0.16);
}

.publish-demo__check {
  position: absolute;
  z-index: 3;
  right: calc(50% - 4.25rem);
  top: 1.15rem;
  width: 1.26rem;
  height: 1.26rem;
  border-radius: 999px;
  background: rgba(214, 255, 63, 0.95);
  box-shadow: 0 0 0 0.14rem rgba(214, 255, 63, 0.08), 0 8px 16px rgba(0, 0, 0, 0.2);
  animation: publishReady 2.8s ease-in-out infinite;
}

.publish-demo__check::after {
  content: "";
  position: absolute;
  left: 0.38rem;
  top: 0.28rem;
  width: 0.42rem;
  height: 0.6rem;
  border-right: 0.16rem solid var(--color-dark);
  border-bottom: 0.16rem solid var(--color-dark);
  transform: rotate(42deg);
}

.publish-demo__progress {
  justify-self: center;
  width: 48%;
  height: 0.28rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.publish-demo__progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: rgba(245, 245, 245, 0.62);
  animation: publishProgress 3.4s ease-in-out infinite;
}

.deliverable-item:last-child,
.fit-item:last-child,
.faq-item:last-child {
  border-bottom: var(--stroke) solid var(--color-border-strong);
}

.deliverable-item--bonus h4 {
  color: var(--color-purple);
}

.deliverable-item--bonus {
  background: linear-gradient(180deg, rgba(127, 92, 255, 0.08), rgba(32, 29, 29, 0.03));
  border-color: rgba(127, 92, 255, 0.22);
}

.deliverable-item--bonus p {
  color: var(--color-dark);
}

.deliverable-item--bonus .deliverable-item__media {
  box-shadow: inset 0 0 0 1px rgba(127, 92, 255, 0.12);
}

@media screen and (min-width: 992px) {
  .deliverables-list {
    min-height: unset;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .deliverable-item {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 0.9rem 0.9rem 1.75rem;
    border-radius: 1.2rem;
    box-shadow: 0 26px 60px rgba(32, 29, 29, 0.16);
    grid-column: span 2;
  }

  .deliverables-list .deliverable-item:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .deliverables-list .deliverable-item:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .deliverable-item__media {
    aspect-ratio: 1.7 / 1;
  }

  .deliverables-list .deliverable-item .deliverable-item__media--publish {
    aspect-ratio: 1.7 / 1;
  }

  .deliverable-item__media:not(.deliverable-item__media--publish) {
    aspect-ratio: auto;
  }

  .deliverables-list .deliverable-item .deliverable-item__media--publish .publish-demo,
  .deliverables-list .deliverable-item .deliverable-item__media--publish .publish-demo__editor {
    height: 100%;
  }
}

.fit-item {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(180deg, rgba(32, 29, 29, 0.04), rgba(32, 29, 29, 0.015));
  border: 1px solid rgba(32, 29, 29, 0.1);
  border-radius: 1.15rem;
  box-shadow: 0 16px 34px rgba(32, 29, 29, 0.05);
}

.fit-item__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  color: var(--color-dark);
  background: var(--color-electric);
  border-radius: 50%;
}

.js .fit-item[data-reveal] {
  transform: translateY(2.4rem);
}

@media (min-width: 768px) {
  .fit-section .section-heading {
    margin-inline: auto;
    text-align: center;
  }
}

.contrast-band-section {
  padding-top: calc(var(--section-gap) * 0.2);
  padding-bottom: calc(var(--section-gap) * 0.2);
}

.contrast-band {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: 1.4rem 1.5rem;
  background: var(--color-dark);
  color: var(--color-light);
  border-radius: 0;
  box-shadow: 0 24px 54px rgba(32, 29, 29, 0.14);
  text-align: center;
}

.contrast-band p {
  max-width: 46rem;
  margin: 0 auto;
  letter-spacing: -0.02em;
  font-family: "Haffer XH", Arial, sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.25;
}

@media (min-width: 992px) {
  .contrast-band {
    padding-inline: 2.5rem;
  }

  .contrast-copy {
    max-width: 56rem;
  }

  .contrast-copy__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 52rem;
    margin-inline: auto;
  }

  .contrast-copy__card {
    min-height: 9.5rem;
  }
}

.contrast-copy {
  max-width: 48rem;
  margin: 2.6rem auto 0;
  text-align: center;
  display: grid;
  gap: 1rem;
}

.contrast-copy__title {
  margin: 0;
  letter-spacing: -0.04em;
  font-family: "Haffer XH", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
  line-height: 1.02;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.contrast-copy__cards {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contrast-copy__card {
  min-height: 10.5rem;
  padding: 1.1rem 1rem;
  display: grid;
  place-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(32, 29, 29, 0.08);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(32, 29, 29, 0.08);
}

.contrast-copy__card p {
  margin: 0;
  letter-spacing: -0.03em;
  font-family: "Haffer XH", Arial, sans-serif;
  font-size: clamp(1.12rem, 1.75vw, 1.35rem);
  line-height: 1.08;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

@media (min-width: 992px) {
  .contrast-copy {
    max-width: 56rem;
  }

  .contrast-copy__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 52rem;
    margin-inline: auto;
  }

  .contrast-copy__card {
    min-height: 9.5rem;
  }
}

.js [data-word-reveal] {
  transform: none;
}

.js [data-word-reveal] .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.7rem);
  transition:
    opacity 260ms ease,
    transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: calc(var(--word-index) * 60ms);
  will-change: transform, opacity;
}

.js [data-word-reveal].is-visible .word {
  opacity: 1;
  transform: translateY(0);
}

.js [data-word-reveal] .word.space {
  width: auto;
  display: inline;
  transform: none;
}

@media (max-width: 767px) {
  .contrast-copy {
    margin-top: 3rem;
    gap: 1.1rem;
  }

  .contrast-copy__title {
    font-size: clamp(1.85rem, 7.2vw, 2.7rem);
    line-height: 1.06;
  }

  .contrast-copy__body {
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .contrast-copy__cards {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .contrast-copy__card {
    min-height: auto;
    padding: 1rem 1.1rem;
  }
}

.contrast-copy strong {
  font-variation-settings: "wght" 620;
  font-size: 1.12em;
}

.pricing-frame {
  position: relative;
  padding: 1.5rem;
  background: var(--color-dark);
  color: var(--color-light);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
}

@media screen and (min-width: 992px) {
  .pricing-frame {
    max-width: 44rem;
    margin-inline: auto;
    padding: 1.25rem;
  }
}

.pricing-frame__label {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 1.95rem;
  margin-bottom: 1.5rem;
  margin-inline: auto;
  padding: 0.25rem 0.5rem 0.1875rem;
  color: var(--color-dark);
  overflow: hidden;
  border-radius: 0.125rem;
}

.pricing-frame__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-frame__copy {
  text-align: center;
}

.pricing-frame__copy .scribble {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-family: "Haffer XH", Arial, sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.75rem);
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
  color: var(--color-light);
}

.pricing-frame__copy h3 {
  margin: 0;
  font-family: "Haffer XH", Arial, sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .pricing-frame__copy .scribble,
  .pricing-frame__copy h3 {
    font-size: clamp(1.55rem, 2.1vw, 2.05rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .pricing-frame__copy h3 {
    max-width: 24ch;
    margin-inline: auto;
  }
}

.pricing-benefits {
  margin-top: 2rem;
  display: grid;
  gap: 0;
  border-top: var(--stroke) solid rgba(244, 244, 244, 0.16);
  text-align: left;
}

.pricing-benefit {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: var(--stroke) solid rgba(244, 244, 244, 0.16);
}

.pricing-benefit p {
  text-align: left;
}

.pricing-benefit span {
  color: var(--color-electric);
  font-family: "Haffer Mono", Arial, sans-serif;
}

.pricing-card {
  display: flex;
}

.pricing-card__inner {
  width: 100%;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--color-dark);
  background: var(--color-light);
  border-radius: var(--card-radius-inner);
}

.pricing-card__old {
  margin: 0;
  color: #d10028;
  font-family: "Haffer Standard", Arial, sans-serif;
  font-variation-settings: "wght" 520;
  text-decoration: line-through;
  text-decoration-color: #d10028;
  text-decoration-thickness: 1.4px;
  text-decoration-skip-ink: none;
  font-size: 1.12rem;
  font-weight: 500;
}

.pricing-card__eyebrow {
  margin: 0;
  font-family: "Haffer Mono", Arial, sans-serif;
  font-size: 0.6875rem;
  line-height: 1;
}

.pricing-card__value {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  letter-spacing: -0.06em;
  font-family: "Haffer XH", Arial, sans-serif;
  line-height: 0.9;
}

.pricing-card__currency {
  margin-top: 0.8rem;
  font-size: 1.8rem;
}

.pricing-card__value strong {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 400;
}

.guarantee-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0;
  justify-items: center;
  text-align: center;
  border-top: var(--stroke) solid var(--color-border-strong);
  border-bottom: var(--stroke) solid var(--color-border-strong);
}

.guarantee-card__badge {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 1.95rem;
  padding: 0.25rem 0.5rem 0.1875rem;
  color: var(--color-dark);
  overflow: hidden;
  border-radius: 0.125rem;
}

.guarantee-seven {
  position: relative;
  width: clamp(6.2rem, 12vw, 8.2rem);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(214, 255, 63, 0.25), rgba(32, 29, 29, 0.06) 58%);
}

.guarantee-seven strong {
  position: relative;
  z-index: 1;
  font-family: "Haffer XH", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--color-dark);
  line-height: 1;
  animation: guaranteeSevenFloat 2.4s ease-in-out infinite;
}

.guarantee-seven__ring {
  position: absolute;
  inset: 0.35rem;
  border: 2px solid rgba(32, 29, 29, 0.2);
  border-radius: 50%;
  animation: guaranteeSevenSpin 6s linear infinite;
}

.guarantee-seven__ring::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.36rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--color-electric);
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(214, 255, 63, 0.45);
  animation: guaranteeSevenPulse 1.9s ease-out infinite;
}

@keyframes guaranteeSevenSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes guaranteeSevenFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.22rem);
  }
}

@keyframes guaranteeSevenPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 255, 63, 0.45);
  }
  70% {
    box-shadow: 0 0 0 0.5rem rgba(214, 255, 63, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(214, 255, 63, 0);
  }
}

.compare-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.compare-card {
  padding: 1.5rem;
  border-radius: var(--card-radius);
}

.compare-card--muted {
  background: rgba(32, 29, 29, 0.06);
}

.compare-card--accent {
  color: var(--color-light);
  background: var(--color-dark);
}

.compare-card__list {
  margin-top: 1rem;
  display: grid;
  gap: 0;
}

.compare-point {
  margin: 0;
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  padding: 1rem 0;
  border-top: var(--stroke) solid currentColor;
}

.compare-point:last-child {
  border-bottom: var(--stroke) solid currentColor;
}

.compare-point__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  font-family: "Haffer Mono", Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1;
}

.compare-point--wrong .compare-point__icon {
  color: #b81f37;
  background: rgba(184, 31, 55, 0.14);
}

.compare-point--right .compare-point__icon {
  color: var(--color-electric);
  background: rgba(214, 255, 63, 0.16);
}

.compare-card--muted .compare-point {
  border-color: rgba(32, 29, 29, 0.16);
}

.compare-card--accent .compare-point {
  border-color: rgba(244, 244, 244, 0.16);
}

.compare-cta {
  margin-top: 2rem;
  text-align: center;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  flex: none;
  color: rgba(32, 29, 29, 0.6);
  font-family: "Haffer Mono", Arial, sans-serif;
  font-size: 1rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  display: none;
  max-width: 50rem;
  padding-top: 0.9rem;
}

.faq-item[open] p {
  display: block;
}

.faq-item[open] p {
  display: block;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .hero-video-section [data-reveal] {
  transform: translateY(1rem);
  transition-duration: 320ms;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


@keyframes ctaRingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes publishSweep {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(340%);
  }
}

@keyframes publishBarTravel {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(165%);
  }
}

@keyframes publishPageFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-0.18rem) rotate(1deg);
  }
}

@keyframes publishProgress {
  0% {
    width: 18%;
  }
  58%, 100% {
    width: 100%;
  }
}

@keyframes publishReady {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.08), 0 10px 20px rgba(0, 0, 0, 0.22);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 0.32rem rgba(255, 255, 255, 0.055), 0 13px 24px rgba(0, 0, 0, 0.24);
  }
}

@keyframes heroScrollHint {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.55;
  }
  50% {
    transform: translateY(0.35rem) rotate(45deg);
    opacity: 0.9;
  }
}

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

  .hero-topline__track {
    animation: none;
  }

  .guarantee-seven strong,
  .guarantee-seven__ring,
  .guarantee-seven__ring::before,
  .hero-scroll-hint__arrow {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

}

@media screen and (max-width: 991px) {
  .offer-card__grid,
  .pricing-frame__grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .steps-grid,
  .compare-grid,
  .deliverables-list {
    grid-template-columns: 1fr;
  }

  .deliverables-stage {
    min-height: auto;
  }

  .deliverables-section[data-mobile-tone="light"] {
    background: var(--color-light);
    color: var(--color-dark);
  }

  .deliverables-section[data-mobile-tone="dark"] {
    background: var(--color-dark);
    color: var(--color-light);
  }

  .deliverables-section[data-mobile-tone="dark"] .deliverables-heading h3,
  .deliverables-section[data-mobile-tone="dark"] .deliverables-heading .scribble {
    color: var(--color-light);
  }

  .deliverables-section[data-mobile-tone="dark"] .deliverable-item--bonus {
    background: linear-gradient(180deg, rgba(127, 92, 255, 0.18), rgba(244, 244, 244, 0.06));
    border-color: rgba(127, 92, 255, 0.34);
  }

  .deliverables-section[data-mobile-tone="dark"] .deliverable-item--bonus p {
    color: var(--color-light);
  }

  .deliverables-sticky {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 0;
    overflow: visible;
    justify-content: flex-start;
    gap: 1.25rem;
  }

  .deliverables-list {
    min-height: auto;
    display: grid;
    gap: 1rem;
    width: 100%;
    padding-bottom: 1.25rem;
    transform: none !important;
    will-change: auto;
  }

  .deliverables-cta {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .deliverable-item {
    position: relative;
    width: 100%;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .deliverable-item--bonus {
    padding-bottom: 2rem;
    margin-bottom: 0.25rem;
  }

  .deliverables-heading {
    text-align: center;
  }

}

@media (min-width: 768px) {
  .hero-topline__track {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    gap: 2rem;
  }

  .hero-scroll-hint {
    display: flex;
    justify-content: center;
    margin-top: 1.2rem;
  }

  .hero-scroll-hint__arrow {
    width: 1.1rem;
    height: 1.1rem;
    border-right: 2px solid rgba(32, 29, 29, 0.5);
    border-bottom: 2px solid rgba(32, 29, 29, 0.5);
    transform: rotate(45deg);
    animation: heroScrollHint 1.8s ease-in-out infinite;
  }

  .fit-section .section-heading,
  .fit-list {
    max-width: 58rem;
    margin-inline: auto;
  }

  .guarantee-card {
    max-width: 52rem;
    margin-inline: auto;
  }

  .faq-section .section-heading,
  .faq-list {
    max-width: 56rem;
    margin-inline: auto;
  }

  .hero-copy {
    padding-top: clamp(3.25rem, 4.6vw, 4.75rem);
  }

  .hero-title {
    max-width: 62rem;
  }

  .display-title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 0.95;
  }

  .hero-lead {
    margin-top: 1.35rem;
  }

  .hero-image {
    width: min(100%, 42rem);
    margin-top: 1.35rem;
  }

  .hero-image img {
    max-width: 100%;
    max-height: min(43vh, 28rem);
    width: auto;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --container-padding: 0.75rem;
  }

  .hero-section {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    padding-bottom: 1.5rem;
  }

  .hero-section .container--hero {
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
  }

  .hero-copy {
    min-height: 100%;
    width: 100%;
    justify-content: flex-start;
    padding-top: clamp(3.75rem, 9vw, 5rem);
    padding-bottom: 2.5rem;
  }

  .hero-title {
    max-width: 100%;
  }

  .display-title {
    font-size: clamp(1.85rem, 8.35vw, 3rem);
    letter-spacing: -0.055em;
    line-height: 0.96;
    text-wrap: pretty;
  }

  .display-title span {
    display: inline;
  }

  .display-title > span:first-child {
    white-space: normal;
  }

  .hero-lead {
    width: min(100%, 32rem);
    margin-top: 1.5rem;
  }

  .hero-lead p {
    font-size: 0.92rem;
  }

  .hero-image {
    width: min(100%, 20rem);
    margin-top: 1.25rem;
  }

  .hero-scroll-hint {
    display: flex;
    justify-content: center;
    margin-top: 0.95rem;
  }

  .hero-scroll-hint__arrow {
    width: 1rem;
    height: 1rem;
    border-right: 2px solid rgba(32, 29, 29, 0.5);
    border-bottom: 2px solid rgba(32, 29, 29, 0.5);
    transform: rotate(45deg);
    animation: heroScrollHint 1.8s ease-in-out infinite;
  }

  .hero-short {
    width: min(100%, 14rem);
    margin-top: 1rem;
  }

  .hero-short__play-icon {
    width: 4rem;
    height: 4rem;
  }

  .hero-short__play-icon::before {
    border-top: 0.66rem solid transparent;
    border-bottom: 0.66rem solid transparent;
    border-left: 1rem solid currentColor;
  }

  .hero-short__play {
    left: 0.75rem;
    bottom: 0.75rem;
    padding: 0.55rem 0.78rem;
    font-size: 0.78rem;
  }

  .hero-video-section {
    padding: 2.75rem 0 3rem;
  }

  .hero-video-feature {
    width: min(100%, 16rem);
    margin-top: 1.5rem;
  }

  .cta-button {
    width: 100%;
    padding-inline: 1rem;
  }

  .cta-button__label {
    font-size: 1rem;
    text-align: center;
  }

  .hero-showcase {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero-marquee-caption h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 0.98;
  }

  .hero-video-wrap {
    margin-top: 1.5rem;
  }

  .hero-filmstrip {
    gap: 0.95rem;
  }

  .hero-filmstrip__viewport {
    mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .hero-filmstrip__viewport::-webkit-scrollbar {
    display: none;
  }

  .hero-filmstrip__row {
    gap: 0.85rem;
    animation: heroFilmstripMove 30s linear infinite;
  }

  .hero-filmstrip__row--reverse {
    animation-direction: reverse;
    animation-duration: 34s;
    margin-left: -5rem;
  }

  .hero-filmstrip:hover .hero-filmstrip__row {
    animation-play-state: running;
  }

  .hero-video-card {
    width: 15.5rem;
    min-width: 15.5rem;
    max-width: 15.5rem;
    padding: 0.28rem;
  }

.hero-video-card__media {
  width: 100% !important;
  max-width: 100%;
  height: auto;
  border-radius: 0.78rem;
}

  .fit-item,
  .offer-checklist__item {
    grid-template-columns: 2.4rem minmax(0, 1fr);
  }

  .offer-card__grid,
  .pricing-frame,
  .offer-card__eyebrow,
  .offer-card__grid,
  .step-card,
  .compare-card,
  .pricing-card__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .deliverables-list {
    min-height: 22.5rem;
  }

  .deliverable-item {
    flex-basis: 100%;
    width: 100%;
  }
}

.testimonials-section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--color-dark);
  color: var(--color-light);
  overflow: hidden;
}

.testimonials-section .section-heading h3 {
  color: var(--color-light);
}

.testimonials-carousel {
  margin-top: 2.25rem;
}

.testimonials-carousel__viewport {
  overflow: hidden;
  padding: 0.35rem 0 0.5rem;
  cursor: grab;
  touch-action: pan-y;
}

.testimonials-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.testimonials-carousel__track {
  display: flex;
  gap: 1.2rem;
  will-change: transform;
}

.testimonials-carousel__slide {
  flex: 0 0 calc((100% - 2.4rem) / 3);
  min-width: calc((100% - 2.4rem) / 3);
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.testimonials-carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials-carousel__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  margin-top: 1rem;
  color: var(--color-electric);
}

.testimonials-carousel__hint span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.38;
  animation: testimonialHintPulse 1.8s ease-in-out infinite;
}

.testimonials-carousel__hint span:nth-child(2) {
  animation-delay: 0.16s;
}

.testimonials-carousel__hint span:nth-child(3) {
  animation-delay: 0.32s;
}

.testimonials-carousel__hint i {
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.15rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  animation: testimonialHintArrow 1.8s ease-in-out infinite;
}

@keyframes testimonialHintPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.88);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes testimonialHintArrow {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(0) rotate(-45deg);
  }

  50% {
    opacity: 1;
    transform: translateX(0.25rem) rotate(-45deg);
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-carousel {
    margin-top: 1.5rem;
  }

  .testimonials-carousel__track {
    gap: 0.85rem;
  }

  .testimonials-carousel__slide {
    flex-basis: 100%;
    min-width: 100%;
    border-radius: 0;
  }
}


