:root {
  --home-bg: #03070d;
  --home-bg-soft: #07111f;
  --home-panel: rgba(9, 15, 27, 0.78);
  --home-panel-strong: rgba(11, 18, 32, 0.94);
  --home-line: rgba(136, 158, 206, 0.18);
  --home-line-strong: rgba(130, 158, 235, 0.34);
  --home-text: #f7f9ff;
  --home-text-soft: #aab5cc;
  --home-text-muted: #6f7c97;
  --home-blue: #2d6bff;
  --home-blue-bright: #5c83ff;
  --home-violet: #9a6dff;
  --home-cyan: #55c8ff;
  --home-gold: #ffd21f;
  --home-gold-soft: rgba(255, 210, 31, 0.16);
  --home-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --home-shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
  --home-radius: 8px;
  --home-radius-sm: 6px;
  --home-width: 1260px;
  --home-gutter: clamp(1rem, 3vw, 2rem);
  --home-edge: max(var(--home-gutter), calc((100vw - var(--home-width)) / 2));
}

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

html {
  scroll-behavior: smooth;
}

body.home-page {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(13, 27, 48, 0.82) 0%, rgba(3, 7, 13, 0) 20rem),
    var(--home-bg);
  color: var(--home-text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

body.home-page a {
  color: inherit;
  text-decoration: none;
}

body.home-page button,
body.home-page input,
body.home-page select {
  font: inherit;
}

.home-page__main {
  position: relative;
  width: min(calc(100% - (2 * var(--home-gutter))), var(--home-width));
  margin: 0 auto;
  padding: 0 0 3rem;
}

.home-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  gap: 1.5rem;
  min-height: 3.9rem;
}

.home-header__brand,
.home-header__actions,
.home-header__nav {
  display: flex;
  align-items: center;
}

.home-header__brand {
  gap: 0.8rem;
  width: fit-content;
}

.home-header__mark {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--home-blue), #154ee8);
  box-shadow: 0 0 32px rgba(45, 107, 255, 0.48);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.home-header__logo {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border-radius: 8px;
}

.home-header__name {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-header__logo + .home-header__name {
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.home-header__nav {
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 3.2rem);
}

.home-header__actions {
  justify-content: flex-end;
  gap: 1.35rem;
}

.home-header__link {
  color: rgba(247, 249, 255, 0.86);
  font-size: 0.87rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.home-header__link:hover {
  color: #fff;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.home-button:hover {
  transform: translateY(-1px);
}

.home-button:disabled,
.home-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
}

.home-button:disabled:hover,
.home-button[aria-disabled="true"]:hover {
  transform: none;
}

.home-button--small {
  min-height: 2.75rem;
  padding: 0 1.25rem;
}

.home-button--primary {
  background: linear-gradient(135deg, #2e72ff 0%, #1151ee 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(31, 95, 255, 0.34);
}

.home-button--ghost {
  border-color: var(--home-line-strong);
  background: rgba(8, 14, 26, 0.68);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.home-eyebrow {
  margin: 0;
  color: var(--home-blue-bright);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-section-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 850;
  line-height: 1.03;
}

.home-section-title--center {
  max-width: none;
  text-align: center;
}

.home-hero {
  /* Hero tuning values are plain px so the section is easy to adjust in DevTools. */
  --hero-height: 760px;
  --hero-left: 96px;
  --hero-right: 96px;
  --hero-panel-gap: 64px;
  --hero-pad-top: 132px;
  --hero-pad-bottom: 84px;
  --hero-title-width: 860px;
  --hero-title-size: 72px;
  --hero-title-line-height: 0.98;
  --hero-copy-width: 470px;
  --hero-panel-width: 360px;
  --hero-image-shift: -55%;
  --hero-image-scale: 1.16;
  --hero-video-shift: -53%;
  --hero-video-scale: 1.08;
  --hero-media-mask: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.22) 5%,
    #000 18%,
    #000 82%,
    rgba(0, 0, 0, 0.22) 95%,
    transparent 100%
  );
  position: relative;
  width: 100vw;
  min-height: var(--hero-height);
  margin-top: -3.9rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid rgba(127, 149, 194, 0.14);
  border-radius: 0;
  background: #02050a;
  box-shadow: var(--home-shadow);
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 190px;
  background:
    radial-gradient(
      ellipse at 50% 100%,
      rgba(45, 107, 255, 0.16),
      transparent 58%
    ),
    linear-gradient(
      180deg,
      rgba(3, 7, 13, 0) 0%,
      rgba(5, 13, 27, 0.58) 54%,
      var(--home-bg-soft) 100%
    );
  pointer-events: none;
}

.home-hero__backdrop {
  position: absolute;
  inset: 0;
}

.home-hero__backdrop::before,
.home-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.home-hero__backdrop::before {
  background:
    radial-gradient(
      circle at 54% 28%,
      rgba(255, 220, 165, 0.13),
      transparent 23rem
    ),
    linear-gradient(
      90deg,
      rgba(3, 7, 13, 0.9) 0%,
      rgba(3, 7, 13, 0.62) 27%,
      rgba(3, 7, 13, 0.05) 58%,
      rgba(3, 7, 13, 0.5) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 7, 13, 0.38) 0%,
      rgba(3, 7, 13, 0.04) 34%,
      rgba(3, 7, 13, 0.86) 100%
    );
}

.home-hero__backdrop::after {
  background:
    radial-gradient(
      circle at 46% 28%,
      rgba(69, 151, 255, 0.24),
      transparent 17rem
    ),
    radial-gradient(
      circle at 72% 38%,
      rgba(255, 186, 104, 0.13),
      transparent 16rem
    ),
    linear-gradient(180deg, rgba(45, 107, 255, 0.08), transparent 34%),
    linear-gradient(
      90deg,
      rgba(92, 131, 255, 0.1),
      transparent 18%,
      transparent 78%,
      rgba(154, 109, 255, 0.12)
    );
  mix-blend-mode: screen;
}

.home-hero__image,
.home-hero__video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image: var(--hero-media-mask);
  mask-image: var(--hero-media-mask);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition:
    opacity 0.45s ease,
    filter 0.45s ease,
    transform 0.45s ease;
}

.home-hero__image {
  transform: translateX(var(--hero-image-shift)) scale(var(--hero-image-scale));
  filter: saturate(0.96) contrast(1.08) brightness(0.88);
}

.home-hero__image.is-entering {
  animation: homeHeroImageEnter 2.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-hero__video {
  opacity: 0;
  transform: translateX(var(--hero-video-shift)) scale(var(--hero-video-scale));
  background: rgba(2, 5, 10, 0.92);
  filter: saturate(1.02) contrast(1.05) brightness(0.9);
}

.home-hero.is-demo-playing .home-hero__image {
  opacity: 0;
}

.home-hero.is-demo-playing .home-hero__video {
  opacity: 1;
  transform: translateX(var(--hero-video-shift)) scale(var(--hero-video-scale));
}

.home-hero-subtitles {
  --demo-caption-color: #ffffff;
  --demo-highlight-color: #facc15;
  --demo-caption-size: 54px;
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 76px;
  width: min(840px, max(320px, calc(100vw - 520px)));
  pointer-events: none;
  text-align: center;
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.home-hero.is-demo-playing .home-hero-subtitles {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.home-hero-subtitles__line {
  display: inline;
  color: var(--demo-caption-color);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  font-size: var(--demo-caption-size);
  font-weight: 850;
  line-height: 1.14;
  letter-spacing: 0;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.92),
    0 -2px 0 rgba(0, 0, 0, 0.72),
    2px 0 0 rgba(0, 0, 0, 0.72),
    -2px 0 0 rgba(0, 0, 0, 0.72),
    0 10px 28px rgba(0, 0, 0, 0.55);
}

.home-hero-subtitles__word {
  display: inline-block;
  margin: 0 0.07em;
  padding: 0 0.02em;
  border-radius: 8px;
  transition:
    color 0.12s ease,
    background-color 0.12s ease,
    box-shadow 0.12s ease;
}

.home-hero-subtitles[data-highlight-style="text"] .home-hero-subtitles__word.is-active,
.home-hero-subtitles[data-highlight-style="text_cumulative"] .home-hero-subtitles__word.is-active {
  color: var(--demo-highlight-color);
}

.home-hero-subtitles[data-highlight-style="background"] .home-hero-subtitles__word.is-active,
.home-hero-subtitles[data-highlight-style="background_cumulative"] .home-hero-subtitles__word.is-active {
  padding: 0 0.16em 0.05em;
  background: var(--demo-highlight-color);
  color: #06101f;
  text-shadow: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.45);
}

.home-hero__content {
  position: absolute;
  z-index: 2;
  left: var(--hero-left);
  top: 50%;
  display: grid;
  align-content: center;
  gap: 1.25rem;
  width: var(--hero-title-width);
  max-width: calc(
    100vw - var(--hero-left) - var(--hero-right) - var(--hero-panel-width) -
      var(--hero-panel-gap)
  );
  transform: translateY(-50%);
}

.home-hero__title {
  margin: 0;
  width: var(--hero-title-width);
  max-width: 100%;
  color: #fff;
  font-size: var(--hero-title-size);
  font-weight: 900;
  line-height: var(--hero-title-line-height);
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-shadow: 0 0.15rem 0.18rem rgba(0, 0, 0, 0.62);
}

.home-hero__title .home-text-word:nth-last-child(-n + 2) {
  background: linear-gradient(135deg, #2f86ff 0%, #5f73ff 54%, #a873ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.home-hero__copy {
  max-width: var(--hero-copy-width);
  margin: 0;
  color: rgba(247, 249, 255, 0.9);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.64;
  text-shadow: 0 0.08rem 0.22rem rgba(0, 0, 0, 0.78);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 0.55rem;
}

.home-hero__trust {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  padding-top: 0.8rem;
}

.home-hero__avatars {
  display: flex;
}

.home-hero__avatars span,
.home-quote__person span {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 2px solid rgba(247, 249, 255, 0.78);
  border-radius: 999px;
  background: linear-gradient(135deg, #e8eefb, #7d8ba6);
  color: #111827;
  font-size: 0.7rem;
  font-weight: 850;
}

.home-hero__avatars span + span {
  margin-left: -0.5rem;
}

.home-hero__stars,
.home-quote__stars {
  color: var(--home-gold);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.home-hero__trust-copy {
  margin: 0.1rem 0 0;
  color: var(--home-text-soft);
  font-size: 0.78rem;
}

.home-controls {
  position: absolute;
  z-index: 3;
  right: var(--hero-right);
  top: 50%;
  width: var(--hero-panel-width);
  padding: 22px;
  transform: translateY(-50%);
  border: 1px solid rgba(127, 149, 194, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(92, 131, 255, 0.2),
      transparent 9rem
    ),
    linear-gradient(180deg, rgba(12, 20, 35, 0.88), rgba(5, 10, 19, 0.82));
  box-shadow: var(--home-shadow-soft);
  backdrop-filter: blur(24px);
}

.home-video-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.home-video-panel__header span {
  color: var(--home-text-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-video-panel__header strong {
  max-width: 138px;
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
  text-align: right;
}

.home-demo-play {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 74px;
  padding: 10px 12px;
  border: 1px solid rgba(92, 131, 255, 0.36);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 50%, rgba(45, 107, 255, 0.28), transparent 72%),
    rgba(255, 255, 255, 0.045);
  color: #fff;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-demo-play:hover {
  border-color: rgba(92, 131, 255, 0.58);
  background:
    radial-gradient(circle at 18% 50%, rgba(45, 107, 255, 0.38), transparent 72%),
    rgba(255, 255, 255, 0.07);
}

.home-demo-play__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(92, 131, 255, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(45, 107, 255, 0.34), rgba(45, 107, 255, 0.08) 64%),
    rgba(5, 10, 19, 0.82);
  box-shadow:
    0 0 0 8px rgba(45, 107, 255, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.26);
}

.home-demo-play__icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #ffffff;
}

.home-demo-play.is-playing .home-demo-play__icon::before {
  width: 15px;
  height: 18px;
  margin-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 5px solid #ffffff;
  border-right: 5px solid #ffffff;
}

.home-demo-play__copy {
  display: grid;
  gap: 5px;
}

.home-demo-play__copy strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.home-demo-play__copy small {
  color: var(--home-text-soft);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.home-demo-style-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.home-demo-field {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(127, 149, 194, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.home-demo-field span {
  color: var(--home-text-muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-demo-field select,
.home-demo-field input[type="range"] {
  width: 100%;
}

.home-demo-field select {
  min-height: 30px;
  border: 1px solid rgba(127, 149, 194, 0.24);
  border-radius: 8px;
  background: rgba(4, 10, 20, 0.86);
  color: #ffffff;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 800;
}

.home-demo-field input[type="range"] {
  accent-color: #38bdf8;
}

.home-demo-field strong {
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  text-align: right;
}

.home-demo-field--color {
  grid-template-columns: 112px minmax(0, 1fr);
}

.home-demo-color-control {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  min-width: 124px;
  min-height: 30px;
  padding: 4px 8px;
  border: 1px solid rgba(127, 149, 194, 0.24);
  border-radius: 999px;
  background: rgba(4, 10, 20, 0.72);
  cursor: pointer;
}

.home-demo-color-control:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22);
}

.home-demo-color-control .home-demo-color-dot {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(226, 232, 240, 0.72);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.18);
}

.home-demo-color-control .home-demo-color-hex {
  color: rgba(226, 232, 240, 0.78);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.color-picker-popover {
  position: fixed;
  z-index: 2200;
  width: min(320px, calc(100vw - 24px));
}

.color-picker-card {
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.96);
  color: #e2e8f0;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(14px);
}

.color-picker-header {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.color-picker-header p {
  margin: 0;
  color: #f8fafc;
  font-size: 14px;
  font-weight: 750;
}

.color-picker-header span {
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.35;
}

.color-picker-surface {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 6px;
  background: #ffffff;
  cursor: crosshair;
}

.color-picker-canvas {
  display: block;
  width: 100%;
  height: 168px;
}

.color-picker-pointer {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.98);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.55);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.color-picker-hue-label,
.color-picker-hex-label {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.color-picker-hue-label input[type="range"] {
  width: 100%;
  accent-color: #facc15;
}

.color-picker-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.color-picker-swatch {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.18);
  transition:
    transform 0.12s ease,
    border-color 0.12s ease;
}

.color-picker-swatch[aria-pressed="true"] {
  transform: scale(1.08);
  border-color: #fbbf24;
}

.color-picker-hex-label input {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.14em;
  outline: none;
  text-transform: uppercase;
}

.color-picker-hex-label input:focus {
  border-color: #facc15;
}

.home-demo-caption-sample {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.home-demo-caption-sample span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  color: #a5f3fc;
  font-size: 11px;
  font-weight: 850;
}

.home-video-panel__play {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 30px;
  border: 1px solid rgba(92, 131, 255, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      rgba(45, 107, 255, 0.34),
      rgba(45, 107, 255, 0.08) 64%
    ),
    rgba(5, 10, 19, 0.82);
  box-shadow:
    0 0 0 14px rgba(45, 107, 255, 0.08),
    0 28px 58px rgba(0, 0, 0, 0.3);
}

.home-video-panel__play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid #fff;
}

.home-video-panel__timeline {
  position: relative;
  height: 6px;
  overflow: visible;
  border-radius: 999px;
  background: rgba(127, 149, 194, 0.24);
}

.home-video-panel__progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--home-blue), var(--home-violet));
}

.home-video-panel__handle {
  position: absolute;
  left: 58%;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(45, 107, 255, 0.2);
  transform: translate(-50%, -50%);
}

.home-video-panel__handle.is-pulsing {
  animation: homeHandlePulse 2.3s ease-in-out infinite;
}

.home-video-panel__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: var(--home-text-muted);
  font-size: 12px;
  font-weight: 750;
}

.home-video-panel__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.home-video-panel__steps span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 1px solid rgba(127, 149, 194, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(247, 249, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
}

.home-feature-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2rem;
  padding: 1.5rem;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background:
    linear-gradient(180deg, rgba(8, 18, 34, 0.9), rgba(5, 10, 19, 0.82)),
    rgba(5, 10, 19, 0.78);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26),
    0 -28px 80px rgba(45, 107, 255, 0.08);
  backdrop-filter: blur(18px);
}

.home-feature-strip__item {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.home-feature-strip__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(92, 131, 255, 0.3);
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(45, 107, 255, 0.18),
    rgba(154, 109, 255, 0.1)
  );
  color: #9eb3ff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: inset 0 0 22px rgba(92, 131, 255, 0.18);
}

.home-feature-strip h2 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-feature-strip p {
  margin: 0;
  color: var(--home-text-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.home-workflow,
.home-social {
  padding-top: clamp(4.7rem, 8vw, 7rem);
  text-align: center;
}

.home-workflow__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 3rem);
  margin-top: 2.35rem;
}

.home-workflow__grid::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(154, 109, 255, 0.86),
    rgba(154, 109, 255, 0.86) 4px,
    transparent 4px,
    transparent 10px
  );
  opacity: 0.75;
}

.home-step {
  position: relative;
  z-index: 1;
  min-height: 14.2rem;
  padding: 1.25rem;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: linear-gradient(
    180deg,
    rgba(13, 20, 35, 0.82),
    rgba(6, 11, 21, 0.88)
  );
  text-align: left;
  box-shadow: var(--home-shadow-soft);
}

.home-step__number {
  display: block;
  color: var(--home-blue-bright);
  font-size: 1.7rem;
  font-weight: 850;
}

.home-step__symbol {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  margin: 1.1rem auto 1.4rem;
  border: 1px solid rgba(154, 109, 255, 0.28);
  border-radius: 8px;
  background: rgba(154, 109, 255, 0.12);
  color: #aa8bff;
  font-size: 0.82rem;
  font-weight: 900;
}

.home-step h3,
.home-quote strong {
  margin: 0;
  color: #fff;
}

.home-step h3 {
  font-size: 1rem;
  font-weight: 850;
}

.home-step p {
  margin: 0.7rem 0 0;
  color: var(--home-text-soft);
  font-size: 0.84rem;
  line-height: 1.52;
}

.home-workflow__button {
  margin-top: 2.25rem;
}

.home-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(22rem, 0.68fr);
  gap: clamp(2.4rem, 5vw, 4.5rem);
  align-items: center;
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.home-showcase__text {
  max-width: 31rem;
  margin: 1.25rem 0 0;
  color: var(--home-text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.home-proof {
  position: relative;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background:
    radial-gradient(circle at 16% 0%, rgba(92, 131, 255, 0.18), transparent 23rem),
    linear-gradient(
      180deg,
      rgba(9, 16, 29, 0.92),
      rgba(5, 10, 19, 0.94)
    );
  box-shadow: var(--home-shadow);
}

.home-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(85, 200, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
  pointer-events: none;
}

.home-proof__preview {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(127, 149, 194, 0.22);
  border-radius: var(--home-radius-sm);
  background: #050a13;
}

.home-proof__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(2, 5, 10, 0.72)),
    radial-gradient(circle at 50% 95%, rgba(3, 7, 13, 0.62), transparent 42%);
  pointer-events: none;
}

.home-proof__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
  filter: saturate(0.95) contrast(1.04);
}

.home-proof__caption {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 8%;
  width: min(92%, 42rem);
  text-align: center;
  transform: translateX(-50%);
}

.home-proof__caption span {
  display: inline-block;
  color: #fff;
  font-size: clamp(1.25rem, 2.35vw, 2.05rem);
  font-weight: 900;
  line-height: 1.08;
  text-shadow:
    0 3px 0 #000,
    0 0 18px rgba(0, 0, 0, 0.7);
}

.home-proof__caption mark {
  background: transparent;
  color: var(--home-gold);
}

.home-proof__board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-proof-card {
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  min-height: 5.15rem;
  padding: 0.95rem;
  border: 1px solid rgba(127, 149, 194, 0.18);
  border-radius: var(--home-radius);
  background: rgba(11, 21, 38, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-proof-card__icon {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(127, 149, 194, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(45, 107, 255, 0.46), rgba(154, 109, 255, 0.25));
  color: #c6d7ff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-proof-card h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-proof-card p {
  margin: 0;
  color: var(--home-text-soft);
  font-size: 0.83rem;
  line-height: 1.35;
}

.home-proof-card del {
  color: rgba(248, 113, 113, 0.82);
  text-decoration-color: rgba(248, 113, 113, 0.7);
}

.home-proof-card strong,
.home-proof-formats {
  color: #fff;
  font-weight: 900;
}

.home-proof-wave {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.62fr 1.08fr 0.52fr;
  gap: 0.42rem;
  align-items: center;
  height: 1.65rem;
}

.home-proof-wave span {
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(127, 149, 194, 0.36);
}

.home-proof-wave span.is-pulsing {
  animation: homeProofPulse 1.44s ease-in-out infinite alternate;
}

.home-proof-wave span:nth-child(2),
.home-proof-wave span:nth-child(3) {
  background: var(--home-blue);
}

.home-proof-wave i {
  position: absolute;
  top: -0.25rem;
  bottom: -0.25rem;
  left: 47%;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.48);
}

.home-proof-wave i::before {
  content: "";
  position: absolute;
  top: -0.22rem;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 0.32rem solid transparent;
  border-right: 0.32rem solid transparent;
  border-top: 0.42rem solid #fff;
  transform: translateX(-50%);
}

.home-proof-swatches {
  display: flex;
  gap: 0.5rem;
}

.home-proof-swatches span {
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.22);
}

.home-proof-swatches span:nth-child(1) {
  background: #fff;
}

.home-proof-swatches span:nth-child(2) {
  background: var(--home-gold);
}

.home-proof-swatches span:nth-child(3) {
  background: var(--home-blue);
}

.home-proof-formats {
  color: #a5f3fc;
}

.home-checklist {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.home-checklist li {
  position: relative;
  padding-left: 2rem;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.45;
}

.home-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-blue), #1251f0);
  box-shadow: 0 0 22px rgba(45, 107, 255, 0.28);
}

.home-checklist li::after {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.42rem;
  width: 0.36rem;
  height: 0.58rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(40deg);
}

.home-billing {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding-top: clamp(4.7rem, 8vw, 7rem);
}

.home-billing__intro {
  position: sticky;
  top: 1.5rem;
}

.home-billing__text {
  max-width: 31rem;
  margin: 1.25rem 0 0;
  color: var(--home-text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

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

.home-plan {
  position: relative;
  display: flex;
  min-height: 29rem;
  flex-direction: column;
  gap: 1.45rem;
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: linear-gradient(
    180deg,
    rgba(13, 20, 35, 0.82),
    rgba(6, 11, 21, 0.9)
  );
  box-shadow: var(--home-shadow-soft);
}

.home-plan--pro {
  border-color: rgba(92, 131, 255, 0.46);
  background:
    linear-gradient(180deg, rgba(18, 29, 55, 0.92), rgba(7, 12, 24, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(85, 200, 255, 0.18), transparent 44%);
}

.home-plan__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(85, 200, 255, 0.34);
  border-radius: var(--home-radius-sm);
  background: rgba(85, 200, 255, 0.12);
  color: #9adfff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-plan__kicker {
  margin: 0 0 0.6rem;
  color: var(--home-blue-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-plan h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
}

.home-plan__header p:last-child {
  margin: 0.85rem 0 0;
  color: var(--home-text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.home-plan__price {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.15rem;
}

.home-plan__price strong {
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 0.95;
}

.home-plan__price span {
  color: var(--home-text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-plan__features {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.45;
  list-style: none;
}

.home-plan__features li {
  position: relative;
  padding-left: 1.55rem;
}

.home-plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--home-blue), var(--home-cyan));
  box-shadow: 0 0 18px rgba(85, 200, 255, 0.24);
}

.home-plan__checkout {
  display: contents;
}

.home-plan__button {
  align-self: flex-start;
  margin-top: auto;
}

.home-plan__note {
  max-width: 18rem;
  margin: -0.85rem 0 0;
  color: var(--home-text-muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.home-plan__note a {
  color: #9adfff;
  font-weight: 800;
  text-decoration: none;
}

.home-plan__note a:hover {
  text-decoration: underline;
}

.home-social__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2.2rem;
  text-align: left;
}

.home-quote {
  min-height: 13.6rem;
  padding: 1.65rem;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: linear-gradient(
    180deg,
    rgba(13, 20, 35, 0.78),
    rgba(7, 12, 23, 0.82)
  );
  box-shadow: var(--home-shadow-soft);
}

.home-quote__person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.home-quote__person span {
  flex: 0 0 auto;
  width: 2.8rem;
  height: 2.8rem;
}

.home-quote small {
  display: block;
  margin-top: 0.2rem;
  color: var(--home-text-soft);
  font-size: 0.8rem;
}

.home-quote p {
  margin: 1.35rem 0 1.1rem;
  color: #fff;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.45;
}

.home-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  min-height: 15.5rem;
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
  border: 1px solid var(--home-line-strong);
  border-radius: var(--home-radius);
  background: #0b1024;
  box-shadow: var(--home-shadow);
}

.home-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 11, 22, 0.94) 0%,
      rgba(7, 11, 22, 0.68) 52%,
      rgba(7, 11, 22, 0.86) 100%
    ),
    linear-gradient(180deg, rgba(45, 107, 255, 0.12), rgba(154, 109, 255, 0.18));
  pointer-events: none;
}

.home-cta__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.home-cta__content,
.home-cta__actions {
  position: relative;
  z-index: 1;
}

.home-cta__content {
  padding: clamp(2rem, 4vw, 3.25rem);
}

.home-cta__title {
  max-width: 13ch;
  margin: 0.75rem 0 0;
  color: #fff;
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
}

.home-cta__title .home-text-word:nth-last-child(-n + 2) {
  color: var(--home-blue-bright);
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
  padding: clamp(2rem, 4vw, 3.25rem);
}

.home-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: linear-gradient(
    180deg,
    rgba(13, 20, 35, 0.78),
    rgba(7, 12, 23, 0.82)
  );
  box-shadow: var(--home-shadow-soft);
}

.home-support__title {
  margin: 0.4rem 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  font-weight: 900;
  line-height: 1.08;
}

.home-support__text {
  max-width: 34rem;
  margin: 0.7rem 0 0;
  color: var(--home-text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.home-support__link {
  display: grid;
  gap: 0.3rem;
  min-width: min(21rem, 100%);
  padding: 1rem 1.15rem;
  border: 1px solid rgba(92, 131, 255, 0.3);
  border-radius: var(--home-radius);
  background:
    linear-gradient(180deg, rgba(23, 35, 66, 0.78), rgba(10, 17, 32, 0.82)),
    rgba(255, 255, 255, 0.035);
  color: #fff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.home-support__link:hover {
  transform: translateY(-1px);
  border-color: rgba(92, 131, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(31, 48, 91, 0.84), rgba(11, 20, 39, 0.9)),
    rgba(255, 255, 255, 0.045);
}

.home-support__link span {
  color: var(--home-text-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-support__link strong {
  color: var(--home-cyan);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 850;
}

.home-footer {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding: 3rem 0 0;
  color: var(--home-text-muted);
}

.home-footer__brand p {
  max-width: 18rem;
  margin: 1rem 0 1.3rem;
  color: var(--home-text-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.home-footer__brand small {
  font-size: 0.78rem;
}

.home-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem 2rem;
  align-content: start;
  justify-items: start;
  color: var(--home-text-soft);
  font-size: 0.86rem;
}

.home-footer__links a:hover {
  color: #fff;
}

.js-home-reveal,
.js-home-reveal-text {
  opacity: 0;
}

.home-text-word {
  display: inline-block;
  white-space: nowrap;
  will-change: transform, opacity;
}

@keyframes homeHeroImageEnter {
  from {
    transform: translateX(calc(var(--hero-image-shift) + 1.5%)) scale(calc(var(--hero-image-scale) * 1.035));
  }

  to {
    transform: translateX(var(--hero-image-shift)) scale(var(--hero-image-scale));
  }
}

@keyframes homeHandlePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(45, 107, 255, 0);
  }

  50% {
    box-shadow: 0 0 0 0.55rem rgba(45, 107, 255, 0.2);
  }
}

@keyframes homeProofPulse {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.56;
  }
}

@media (max-width: 1360px) {
  .home-hero {
    --hero-left: 64px;
    --hero-right: 64px;
    --hero-panel-gap: 48px;
    --hero-title-width: 760px;
    --hero-title-size: 66px;
    --hero-panel-width: 330px;
    --hero-image-shift: -54%;
    --hero-image-scale: 1.14;
    --hero-video-shift: -52%;
    --hero-video-scale: 1.06;
  }
}

@media (max-width: 1120px) {
  .home-header {
    grid-template-columns: 1fr auto;
  }

  .home-header__nav {
    display: none;
  }

  .home-hero {
    --hero-height: 620px;
    --hero-left: 32px;
    --hero-right: 32px;
    --hero-pad-top: 112px;
    --hero-pad-bottom: 64px;
    --hero-title-width: 600px;
    --hero-title-size: 58px;
    --hero-panel-width: 0px;
    --hero-panel-gap: 0px;
    --hero-image-shift: -50%;
    --hero-image-scale: 1.18;
    --hero-video-shift: -50%;
    --hero-video-scale: 1.12;
    min-height: var(--hero-height);
  }

  .home-hero__backdrop::before {
    background:
      linear-gradient(
        90deg,
        rgba(3, 7, 13, 0.98) 0%,
        rgba(3, 7, 13, 0.78) 44%,
        rgba(3, 7, 13, 0.46) 100%
      ),
      linear-gradient(180deg, rgba(3, 7, 13, 0.42), rgba(3, 7, 13, 0.92));
  }

  .home-hero__content {
    position: relative;
    left: auto;
    top: auto;
    width: var(--hero-title-width);
    max-width: calc(100vw - var(--hero-left) - var(--hero-right));
    min-height: inherit;
    margin-left: var(--hero-left);
    padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
    transform: none;
  }

  .home-hero__title {
    width: var(--hero-title-width);
    max-width: 100%;
    font-size: var(--hero-title-size);
    line-height: 1.02;
  }

  .home-controls {
    display: none;
  }

  .home-feature-strip,
  .home-workflow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-workflow__grid::before {
    display: none;
  }

  .home-showcase,
  .home-billing,
  .home-social__grid,
  .home-cta,
  .home-footer {
    grid-template-columns: 1fr;
  }

  .home-billing__intro {
    position: static;
  }

  .home-cta__actions {
    justify-content: flex-start;
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .home-page__main {
    width: min(calc(100% - 1.5rem), var(--home-width));
    padding-top: 0;
  }

  .home-header {
    gap: 1rem;
  }

  .home-header__name {
    font-size: 0.72rem;
  }

  .home-header__actions {
    gap: 0.8rem;
  }

  .home-header__actions .home-header__link {
    display: none;
  }

  .home-button {
    min-height: 2.8rem;
    padding: 0 1rem;
    font-size: 0.82rem;
  }

  .home-hero {
    --hero-height: 560px;
    --hero-left: 16px;
    --hero-right: 16px;
    --hero-pad-top: 96px;
    --hero-pad-bottom: 44px;
    --hero-title-width: 420px;
    --hero-title-size: 38px;
    --hero-image-scale: 1.24;
    --hero-video-scale: 1.18;
    min-height: var(--hero-height);
    margin-top: -3.9rem;
    border-top: 0;
  }

  .home-hero__backdrop::before {
    background:
      linear-gradient(
        90deg,
        rgba(3, 7, 13, 0.98) 0%,
        rgba(3, 7, 13, 0.74) 52%,
        rgba(3, 7, 13, 0.7) 100%
      ),
      linear-gradient(180deg, rgba(3, 7, 13, 0.2), rgba(3, 7, 13, 0.94));
  }

  .home-hero__content {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    max-width: none;
    min-height: inherit;
    margin-left: var(--hero-left);
    margin-right: var(--hero-right);
    padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
    transform: none;
  }

  .home-hero__title {
    width: 100%;
    max-width: 100%;
    font-size: var(--hero-title-size);
    letter-spacing: 0;
    text-wrap: balance;
  }

  .home-hero__title .home-text-word {
    max-width: 100%;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .home-hero__copy {
    max-width: 100%;
  }

  .home-hero__trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-feature-strip,
  .home-workflow__grid,
  .home-billing__plans,
  .home-social__grid,
  .home-support,
  .home-footer__links {
    grid-template-columns: 1fr;
  }

  .home-support__link {
    min-width: 0;
  }

  .home-feature-strip {
    padding: 1rem;
  }

  .home-workflow,
  .home-social,
  .home-billing,
  .home-showcase {
    padding-top: 4rem;
  }

  .home-plan {
    min-height: auto;
  }

  .home-step {
    min-height: auto;
  }

  .home-proof {
    padding: 0.8rem;
  }

  .home-proof__board {
    grid-template-columns: 1fr;
  }

  .home-proof-card {
    min-height: auto;
  }

  .home-proof__caption span {
    font-size: clamp(1.05rem, 7vw, 1.55rem);
  }

  .home-showcase__copy {
    order: -1;
  }

  .home-cta {
    min-height: 22rem;
  }

  .home-cta__title {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .home-footer {
    padding-bottom: 1rem;
  }
}

@media (max-width: 390px) {
  .home-hero {
    --hero-height: 585px;
    --hero-left: 14px;
    --hero-right: 14px;
    --hero-title-size: 34px;
  }

  .home-hero__actions {
    gap: 0.65rem;
  }

  .home-button {
    min-height: 2.6rem;
    padding: 0 0.82rem;
    font-size: 0.78rem;
  }
}

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

  .home-button,
  .home-header__link {
    transition: none;
  }

  .home-button:hover {
    transform: none;
  }

  .home-video-panel__handle.is-pulsing,
  .home-proof-wave span.is-pulsing {
    animation: none;
  }
}
