:root {
  color-scheme: dark;
  background: #000;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #000;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: #000;
}

body.contact-open {
  overflow: hidden;
}

.scrub-stage {
  --actions-opacity: 0;
  --actions-y: -10px;
  --copy-y: 0px;
  --copy-exit-blur: 0px;
  --copy-exit-opacity: 1;
  --credit-blur: 0px;
  --credit-opacity: 1;
  --credit-y: 0px;
  --cue-opacity: 1;
  --cue-y: 0px;
  --final-image-blur: 10px;
  --final-image-opacity: 0;
  --final-image-scale: 1.035;
  --image-opacity: 0;
  --product-feature-blur: 0px;
  --product-feature-opacity: 1;
  --product-feature-y: 0px;
  --product-image-blur: 12px;
  --product-image-opacity: 0;
  --product-image-y: 46px;
  --product-info-blur: 8px;
  --product-info-opacity: 0;
  --product-info-y: 26px;
  --product-link-blur: 8px;
  --product-link-opacity: 0;
  --product-link-y: 22px;
  --product-title-blur: 12px;
  --product-title-opacity: 0;
  --product-title-y: 42px;
  --tagline-blur: 6px;
  --tagline-opacity: 0;
  --tagline-y: 22px;
  --title-blur: 10px;
  --title-opacity: 0;
  --title-y: 44px;
  --video-opacity: 1;
  position: relative;
  min-height: 560vh;
  background: #000;
}

.scrub-actions {
  --adaptive-ink: #050403;
  --adaptive-ui-border: rgba(5, 4, 3, 0.92);
  --adaptive-ui-fill: rgba(255, 255, 255, 0.02);
  --adaptive-ui-focus: rgba(5, 4, 3, 0.22);
  --adaptive-ui-hover-fill: #050403;
  --adaptive-ui-hover-ink: #fff4e0;
  position: absolute;
  z-index: 3;
  top: clamp(1.15rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2.25rem);
  display: flex;
  gap: 0.65rem;
  transform: translateY(var(--actions-y));
  opacity: var(--actions-opacity);
  pointer-events: none;
  transition:
    opacity 180ms linear,
    transform 180ms ease;
}

.scrub-action {
  display: inline-flex;
  min-width: 0;
  min-height: 2.55rem;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  padding: 0.62rem 1rem;
  border: 1.5px solid var(--adaptive-ui-border);
  border-radius: 999px;
  appearance: none;
  background: var(--adaptive-ui-fill);
  color: var(--adaptive-ink);
  cursor: pointer;
  font: 800 0.92rem/1 "Iowan Old Style", "Palatino Linotype", Palatino,
    Georgia, serif;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.scrub-action:hover,
.scrub-action:focus-visible {
  border-color: var(--adaptive-ui-hover-fill);
  background: var(--adaptive-ui-hover-fill);
  color: var(--adaptive-ui-hover-ink);
}

.scrub-action:focus-visible {
  outline: 3px solid var(--adaptive-ui-focus);
  outline-offset: 3px;
}

.scrub-action__arrow {
  width: 0.52rem;
  height: 0.52rem;
  transform: rotate(-45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.scrub-action--contact:hover .scrub-action__arrow,
.scrub-action--contact:focus-visible .scrub-action__arrow {
  transform: translateX(2px) rotate(-45deg);
}

.contact-dialog {
  width: min(92vw, 34rem);
  max-height: min(86vh, 48rem);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #050403;
  overflow: visible;
}

.contact-dialog::backdrop {
  background:
    linear-gradient(rgba(5, 4, 3, 0.28), rgba(5, 4, 3, 0.48)),
    rgba(5, 4, 3, 0.28);
  backdrop-filter: blur(7px);
}

.contact-card {
  position: relative;
  display: grid;
  gap: 0.85rem;
  max-height: min(86vh, 48rem);
  padding: 1.15rem;
  overflow-y: auto;
  border: 1px solid rgba(255, 244, 224, 0.38);
  border-radius: 8px;
  background: rgba(255, 244, 224, 0.91);
  box-shadow:
    0 30px 90px rgba(5, 4, 3, 0.44),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

.contact-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  place-items: center;
  border: 1.5px solid rgba(5, 4, 3, 0.72);
  border-radius: 999px;
  appearance: none;
  background: rgba(255, 244, 224, 0.62);
  color: #050403;
  cursor: pointer;
}

.contact-close span,
.contact-close span::after {
  display: block;
  width: 0.95rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.contact-close span {
  transform: rotate(45deg);
}

.contact-close span::after {
  content: "";
  transform: rotate(90deg);
}

.contact-head {
  padding-right: 2.6rem;
}

.contact-head h2 {
  margin: 0;
  font-family: "Bodoni 72", Didot, "Iowan Old Style", "Palatino Linotype",
    Palatino, Georgia, serif;
  font-size: 3.2rem;
  font-style: italic;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
}

.contact-head p {
  margin: 0.45rem 0 0;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
}

.contact-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1.5px solid rgba(5, 4, 3, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  color: #050403;
  font: 750 1rem/1.25 "Iowan Old Style", "Palatino Linotype", Palatino,
    Georgia, serif;
  letter-spacing: 0;
  outline: none;
}

.contact-field input {
  min-height: 2.75rem;
  padding: 0.7rem 0.8rem;
}

.contact-field textarea {
  min-height: 8rem;
  padding: 0.8rem;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-close:focus-visible,
.contact-submit:focus-visible {
  outline: 3px solid rgba(5, 4, 3, 0.2);
  outline-offset: 3px;
}

.contact-status {
  min-height: 1.25rem;
  margin: 0;
  color: #4a160f;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}

.contact-status[data-state="success"] {
  color: #183d1f;
}

.contact-submit {
  min-height: 3rem;
  border: 1.5px solid #050403;
  border-radius: 999px;
  appearance: none;
  background: #050403;
  color: #fff4e0;
  cursor: pointer;
  font: 900 1rem/1 "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    serif;
  letter-spacing: 0;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #fff4e0;
  color: #050403;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.scrub-pin {
  position: sticky;
  top: 0;
  display: grid;
  width: 100%;
  height: 100svh;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.scrub-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100svh;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  background: #000;
  opacity: var(--video-opacity);
  pointer-events: none;
  user-select: none;
  will-change: opacity;
}

.scrub-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100svh;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  opacity: var(--image-opacity);
  pointer-events: none;
  user-select: none;
  will-change: opacity;
}

.final-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100svh;
  min-height: 100vh;
  transform: scale(var(--final-image-scale));
  object-fit: cover;
  object-position: center;
  opacity: var(--final-image-opacity);
  filter: blur(var(--final-image-blur));
  pointer-events: none;
  user-select: none;
  will-change: opacity, transform, filter;
}

.scrub-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: calc(100% - 64px);
  max-width: 86rem;
  transform: translate(-50%, calc(-50% + var(--copy-y)));
  text-align: center;
  opacity: var(--copy-exit-opacity);
  filter: blur(var(--copy-exit-blur));
  pointer-events: none;
  user-select: none;
  will-change: opacity, transform, filter;
}

.scrub-title {
  margin: 0;
  transform: translateY(var(--title-y));
  --adaptive-edge: rgba(5, 4, 3, 0.95);
  --adaptive-glow: rgba(255, 246, 220, 0.42);
  --adaptive-ink: #050403;
  --adaptive-stroke-width: 0.45px;
  font-family: "Bodoni 72", Didot, "Iowan Old Style", "Palatino Linotype",
    Palatino, Georgia, serif;
  font-size: 6.25rem;
  font-style: italic;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  opacity: var(--title-opacity);
  filter: blur(var(--title-blur));
  will-change: opacity, transform, filter;
}

.scrub-tagline {
  max-width: 48rem;
  margin: 1.15rem auto 0;
  transform: translateY(var(--tagline-y));
  --adaptive-edge: rgba(5, 4, 3, 0.86);
  --adaptive-glow: rgba(255, 246, 220, 0.36);
  --adaptive-ink: #050403;
  --adaptive-stroke-width: 0.22px;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.1rem, 2.1vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  opacity: var(--tagline-opacity);
  filter: blur(var(--tagline-blur));
  will-change: opacity, transform, filter;
}

.scrub-credit {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 3vw, 2.35rem);
  bottom: clamp(1rem, 4vh, 2.5rem);
  margin: 0;
  transform: translateY(var(--credit-y));
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    serif;
  font-size: clamp(0.9rem, 1.35vw, 1.08rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  color: #050403;
  -webkit-text-stroke: 0.7px rgba(255, 255, 255, 0.96);
  text-shadow:
    1px 0 0 rgba(255, 255, 255, 0.96),
    -1px 0 0 rgba(255, 255, 255, 0.96),
    0 1px 0 rgba(255, 255, 255, 0.96),
    0 -1px 0 rgba(255, 255, 255, 0.96),
    0 1px 10px rgba(255, 255, 255, 0.42);
  opacity: var(--credit-opacity);
  filter: blur(var(--credit-blur));
  pointer-events: none;
  text-align: right;
  user-select: none;
  will-change: opacity, transform, filter;
}

.product-feature {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(28rem, 1.18fr);
  gap: clamp(1.8rem, 4vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  transform: translateY(var(--product-feature-y));
  color: #050403;
  opacity: var(--product-feature-opacity);
  filter: blur(var(--product-feature-blur));
  pointer-events: none;
  will-change: opacity, transform, filter;
}

.product-feature[aria-hidden="false"] {
  pointer-events: auto;
}

.product-feature--fin {
  grid-template-columns: minmax(0, 0.72fr) minmax(28rem, 1.28fr);
}

.product-copy {
  max-width: 50rem;
  align-self: center;
}

.product-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.45rem);
  width: fit-content;
  transform: translateY(var(--product-title-y));
  isolation: isolate;
  opacity: var(--product-title-opacity);
  filter: blur(var(--product-title-blur));
  will-change: opacity, transform, filter;
}

.product-heading::before {
  position: absolute;
  z-index: -1;
  inset: clamp(-0.85rem, -1.2vw, -0.55rem) clamp(-2.2rem, -3vw, -1.2rem)
    clamp(-0.9rem, -1.3vw, -0.6rem) clamp(-0.9rem, -1.4vw, -0.55rem);
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse at 44% 54%,
      rgba(255, 246, 220, 0.72) 0%,
      rgba(255, 246, 220, 0.56) 36%,
      rgba(255, 246, 220, 0.2) 66%,
      rgba(255, 246, 220, 0) 84%
    ),
    radial-gradient(
      ellipse at 72% 47%,
      rgba(255, 246, 220, 0.34) 0%,
      rgba(255, 246, 220, 0.15) 48%,
      rgba(255, 246, 220, 0) 78%
    );
  content: "";
  filter: blur(7px);
}

.product-logo {
  display: block;
  width: clamp(5rem, 8.4vw, 8.5rem);
  aspect-ratio: 1;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 24%;
  box-shadow: 0 18px 46px rgba(5, 4, 3, 0.22);
}

.product-title {
  margin: 0;
  font-family: "Bodoni 72", Didot, "Iowan Old Style", "Palatino Linotype",
    Palatino, Georgia, serif;
  font-size: clamp(7.5rem, 14.4vw, 15rem);
  font-style: italic;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0;
  color: #050403;
  -webkit-text-stroke: 0;
  text-shadow:
    0 1px 0 rgba(255, 246, 220, 0.82),
    0 -1px 0 rgba(255, 246, 220, 0.5),
    1px 0 0 rgba(255, 246, 220, 0.46),
    -1px 0 0 rgba(255, 246, 220, 0.46),
    0 10px 34px rgba(255, 246, 220, 0.68);
}

.product-heading--fin {
  display: grid;
  gap: 0.12rem;
  align-items: start;
}

.product-heading--fin::before {
  inset: clamp(-0.7rem, -1vw, -0.45rem) clamp(-2rem, -3vw, -1rem)
    clamp(-0.85rem, -1.2vw, -0.55rem) clamp(-0.85rem, -1.2vw, -0.55rem);
}

.product-title--fin {
  font-family: Arial Black, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(8rem, 14.8vw, 15.4rem);
  font-style: normal;
  font-weight: 950;
  line-height: 0.72;
  text-transform: lowercase;
}

.product-subtitle {
  margin: 0.25rem 0 0;
  color: #050403;
  font-family: Arial Black, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.42rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow:
    0 1px 0 rgba(255, 246, 220, 0.78),
    0 0 28px rgba(255, 246, 220, 0.54);
}

.product-link {
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: clamp(1.15rem, 2.4vw, 1.8rem);
  padding: 0.72rem 1.12rem;
  transform: translateY(var(--product-link-y));
  isolation: isolate;
  border: 1.5px solid rgba(5, 4, 3, 0.86);
  border-radius: 999px;
  background: rgba(255, 244, 224, 0.46);
  color: #050403;
  font: 850 1rem/1 "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    serif;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow: none;
  opacity: var(--product-link-opacity);
  filter: blur(var(--product-link-blur));
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 224, 0.18),
    0 0 34px rgba(255, 246, 220, 0.38),
    0 12px 34px rgba(5, 4, 3, 0.16);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
  will-change: opacity, transform, filter;
}

.product-link::before {
  position: absolute;
  z-index: -1;
  inset: -0.9rem -1.25rem;
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse at 48% 52%,
      rgba(255, 246, 220, 0.72) 0%,
      rgba(255, 246, 220, 0.42) 52%,
      rgba(255, 246, 220, 0) 84%
    ),
    radial-gradient(
      ellipse at 80% 46%,
      rgba(255, 246, 220, 0.34) 0%,
      rgba(255, 246, 220, 0) 72%
    );
  content: "";
  filter: blur(8px);
}

.product-feature[data-link-active="true"] .product-link {
  pointer-events: auto;
}

.product-link:hover,
.product-link:focus-visible {
  border-color: #050403;
  background: #050403;
  color: #fff4e0;
}

.product-link:focus-visible {
  outline: 3px solid rgba(5, 4, 3, 0.24);
  outline-offset: 4px;
}

.product-link__arrow {
  width: 0.62rem;
  height: 0.62rem;
  transform: rotate(-45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.product-info {
  position: relative;
  max-width: 36rem;
  margin: clamp(1.15rem, 2.4vw, 1.7rem) 0 0;
  padding: clamp(0.75rem, 1.6vw, 1rem) clamp(0.85rem, 1.9vw, 1.15rem);
  transform: translateY(var(--product-info-y));
  isolation: isolate;
  border-radius: 8px;
  background: rgba(255, 244, 224, 0.58);
  color: #050403;
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 224, 0.2),
    0 0 46px rgba(255, 246, 220, 0.24),
    0 14px 38px rgba(5, 4, 3, 0.14);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.08rem, 1.9vw, 1.52rem);
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: 0;
  text-shadow: none;
  opacity: var(--product-info-opacity);
  filter: blur(var(--product-info-blur));
  will-change: opacity, transform, filter;
}

.product-info::before {
  position: absolute;
  z-index: -1;
  inset: -0.9rem -1rem;
  border-radius: 1.3rem;
  background:
    radial-gradient(
      ellipse at 42% 44%,
      rgba(255, 246, 220, 0.54) 0%,
      rgba(255, 246, 220, 0.28) 48%,
      rgba(255, 246, 220, 0) 80%
    ),
    radial-gradient(
      ellipse at 76% 58%,
      rgba(255, 246, 220, 0.28) 0%,
      rgba(255, 246, 220, 0) 76%
    );
  content: "";
  filter: blur(9px);
}

.product-visual {
  display: flex;
  width: min(100%, 52rem);
  margin: 0;
  justify-self: end;
  align-items: center;
  overflow: hidden;
  transform: translateY(var(--product-image-y));
  border: 1px solid rgba(255, 244, 224, 0.24);
  border-radius: 8px;
  opacity: var(--product-image-opacity);
  filter: blur(var(--product-image-blur));
  box-shadow:
    0 28px 80px rgba(5, 4, 3, 0.52),
    0 0 0 1px rgba(5, 4, 3, 0.18);
  will-change: opacity, transform, filter;
}

.product-visual--fin {
  display: grid;
  width: min(100%, 44rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.3vw, 1.05rem);
  align-items: center;
  overflow: visible;
  border: 0;
  box-shadow: none;
}

.fin-shot {
  display: block;
  width: 100%;
  aspect-ratio: 1260 / 2736;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255, 244, 224, 0.3);
  border-radius: clamp(1.1rem, 2vw, 1.65rem);
  box-shadow:
    0 28px 74px rgba(5, 4, 3, 0.46),
    0 0 34px rgba(255, 246, 220, 0.16);
  background: rgba(255, 244, 224, 0.62);
}

.fin-shot--dashboard {
  transform: translateY(1.4rem) rotate(-3.5deg);
}

.fin-shot--ai {
  transform: translateY(-0.55rem);
}

.fin-shot--analytics {
  transform: translateY(1.1rem) rotate(3deg);
}

.product-shot {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 3024 / 1898;
  object-fit: cover;
  object-position: center;
  transform: translateX(0);
  will-change: transform;
}

.product-feature[data-gallery-active="true"] .product-shot {
  animation: product-shot-scroll 7.2s ease-in-out 0.8s infinite alternate;
}

@keyframes product-shot-scroll {
  0%,
  34% {
    transform: translateX(0);
  }

  66%,
  100% {
    transform: translateX(-100%);
  }
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: clamp(1.25rem, 5vh, 3rem);
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  transform: translate(50%, var(--cue-y));
  place-items: center;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: rgba(5, 4, 3, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 244, 224, 0.22),
    0 14px 34px rgba(5, 4, 3, 0.28);
  cursor: pointer;
  opacity: var(--cue-opacity);
  transition:
    background-color 160ms linear,
    opacity 160ms linear;
  animation: cue-bump 1.15s ease-in-out infinite;
  will-change: opacity, transform;
}

.scroll-cue:focus-visible {
  outline: 3px solid rgba(255, 244, 224, 0.72);
  outline-offset: 4px;
}

.scroll-cue:disabled {
  pointer-events: none;
}

.scroll-cue__arrow {
  width: 0.9rem;
  height: 0.9rem;
  transform: translateY(-0.12rem) rotate(45deg);
  border-right: 3px solid #fff4e0;
  border-bottom: 3px solid #fff4e0;
}

@keyframes cue-bump {
  0%,
  100% {
    transform: translate(50%, var(--cue-y));
  }

  45% {
    transform: translate(50%, calc(var(--cue-y) + 10px));
  }
}

[data-adaptive-ink] {
  color: var(--adaptive-ink);
  -webkit-text-stroke: var(--adaptive-stroke-width) var(--adaptive-edge);
  text-shadow:
    0.8px 0 0 var(--adaptive-edge),
    -0.8px 0 0 var(--adaptive-edge),
    0 0.8px 0 var(--adaptive-edge),
    0 -0.8px 0 var(--adaptive-edge),
    0 2px 12px var(--adaptive-glow),
    0 0 28px var(--adaptive-glow);
  transition:
    color 160ms linear,
    text-shadow 160ms linear,
    -webkit-text-stroke-color 160ms linear;
}

@media (max-width: 900px) {
  .scrub-stage {
    min-height: 475vh;
  }

  .scrub-actions {
    top: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }

  .scrub-action {
    min-height: 2.35rem;
    padding: 0.56rem 0.82rem;
    font-size: 0.84rem;
  }

  .scrub-copy {
    width: calc(100% - 40px);
  }

  .scrub-title {
    font-size: 4.35rem;
  }

  .scrub-tagline {
    max-width: 34rem;
  }

  .scroll-cue {
    width: 3.2rem;
    height: 3.2rem;
  }

  .product-feature {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 1.8rem;
    padding: 5.25rem 1.5rem 2rem;
  }

  .product-copy {
    max-width: 100%;
  }

  .product-title {
    font-size: clamp(5.6rem, 17vw, 8.6rem);
  }

  .product-title--fin {
    font-size: clamp(6.8rem, 19vw, 9.4rem);
  }

  .product-subtitle {
    font-size: clamp(1.1rem, 3.9vw, 1.75rem);
  }

  .product-logo {
    width: clamp(4.4rem, 10vw, 6.5rem);
  }

  .product-visual {
    width: min(100%, 42rem);
    justify-self: start;
  }

  .product-visual--fin {
    width: min(100%, 34rem);
    gap: 0.65rem;
  }
}

@media (max-width: 520px) {
  .scrub-stage {
    min-height: 430vh;
  }

  .scrub-actions {
    right: 0.75rem;
    gap: 0.42rem;
  }

  .scrub-action {
    min-height: 2.2rem;
    padding: 0.5rem 0.68rem;
    font-size: 0.75rem;
  }

  .contact-dialog {
    width: calc(100vw - 1.25rem);
  }

  .contact-card {
    gap: 0.72rem;
    padding: 1rem;
  }

  .contact-head h2 {
    font-size: 2.45rem;
  }

  .contact-head p {
    font-size: 0.98rem;
  }

  .scrub-title {
    font-size: 2.85rem;
    line-height: 1;
  }

  .scrub-tagline {
    margin-top: 0.9rem;
    font-size: 1.05rem;
  }

  .scrub-credit {
    right: 0.9rem;
    bottom: 0.9rem;
    font-size: 0.82rem;
  }

  .scroll-cue {
    bottom: 1.25rem;
    width: 3rem;
    height: 3rem;
  }

  .product-feature {
    gap: 1.1rem;
    padding: 5rem 1.1rem 1.1rem;
  }

  .product-title {
    font-size: clamp(4.8rem, 21vw, 6rem);
  }

  .product-title--fin {
    font-size: clamp(5.1rem, 28vw, 6.8rem);
  }

  .product-subtitle {
    font-size: clamp(1rem, 5.6vw, 1.35rem);
  }

  .product-logo {
    width: clamp(3.8rem, 15vw, 5.1rem);
  }

  .product-link {
    min-height: 2.6rem;
    padding: 0.62rem 0.92rem;
    font-size: 0.92rem;
  }

  .product-info {
    max-width: 21rem;
    font-size: 1rem;
    line-height: 1.3;
  }

  .product-visual {
    width: 100%;
  }

  .product-visual--fin {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .fin-shot {
    border-radius: 0.85rem;
  }

  .fin-shot--dashboard {
    transform: translateY(0.65rem) rotate(-3deg);
  }

  .fin-shot--ai {
    transform: translateY(-0.25rem);
  }

  .fin-shot--analytics {
    transform: translateY(0.55rem) rotate(2.5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue {
    animation: none;
  }
}

@media (max-aspect-ratio: 9 / 16) {
  .scrub-video,
  .scrub-image {
    width: auto;
    min-width: 100vw;
  }
}
