:root {
  color-scheme: dark;
  --paper: #080811;
  --paper-deep: #0b0a15;
  --surface: #100f1c;
  --surface-strong: #151324;
  --cream: #f3eee3;
  --ink: #f3eee3;
  --muted: #9c958a;
  --line: rgb(243 238 227 / 0.12);
  --yellow: #e7b64a;
  --yellow-soft: #f0c45b;
  --purple: #261c3c;
  --lilac: #ad91d8;
  --teal: #4ab7a5;
  --rust: #e7b64a;
  --card-ink: #18140c;
  --shadow: #030307;
  --max-width: 74rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

img,
video {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 12px;
  background: transparent;
}

.header-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 12px 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(9 8 17 / 0.68), rgb(25 18 43 / 0.5));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.025), 0 12px 34px rgb(0 0 0 / 0.2);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

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

.brand span span {
  color: var(--rust);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.site-nav > a:not(.nav-cta) {
  transition: color 160ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--ink);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--card-ink);
  transition: transform 160ms ease, background 160ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--yellow-soft);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgb(8 8 17 / 0.3) 0%,
      rgb(8 8 17 / 0.16) 48%,
      rgb(8 8 17 / 0.5) 100%
    ),
    linear-gradient(90deg, rgb(8 8 17 / 0.12), transparent 48%, rgb(22 12 38 / 0.2)),
    url("/assets/existential-business-hero-bg.png") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgb(101 62 158 / 0.72),
    rgb(231 182 74 / 0.25) 52%,
    rgb(74 183 165 / 0.72)
  );
  content: "";
  pointer-events: none;
}

.hero-message-layer {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-message {
  --message-left: 12%;
  --message-bottom: 8%;
  --message-stem: 42px;
  --message-accent: var(--yellow);

  position: absolute;
  bottom: calc(var(--message-bottom) + var(--message-stem));
  left: var(--message-left);
  max-width: min(18rem, 27vw);
  padding: 12px 16px;
  border: 1px solid color-mix(in srgb, var(--message-accent) 42%, transparent);
  border-radius: 14px;
  background: linear-gradient(115deg, rgb(17 15 29 / 0.68), rgb(34 23 52 / 0.46));
  box-shadow:
    0 14px 42px rgb(0 0 0 / 0.24),
    inset 0 1px 0 rgb(255 255 255 / 0.025);
  color: rgb(243 238 227 / 0.76);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-align: left;
  text-wrap: balance;
  opacity: 0;
  transform: translate3d(-50%, 12px, 0) scale(0.985);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: hero-message-signal 9.8s cubic-bezier(0.22, 0.7, 0.25, 1) forwards;
}

.hero-message::before {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 13px;
  height: 13px;
  border-right: 1px solid color-mix(in srgb, var(--message-accent) 42%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--message-accent) 42%, transparent);
  background: rgb(20 16 33 / 0.82);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.hero-message::after {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 12px;
  height: var(--message-stem);
  background:
    radial-gradient(circle at 50% calc(100% - 2px), var(--message-accent) 0 1.5px, transparent 2.5px),
    linear-gradient(
        to bottom,
        color-mix(in srgb, var(--message-accent) 48%, transparent),
        color-mix(in srgb, var(--message-accent) 18%, transparent)
      )
      50% 0 / 1px calc(100% - 6px) no-repeat;
  filter: drop-shadow(0 0 7px var(--message-accent));
  content: "";
  transform: translateX(-50%);
}

.hero-message-copy {
  display: block;
}

.hero-message-time {
  position: absolute;
  top: calc(100% + 7px);
  right: 3px;
  color: color-mix(in srgb, var(--message-accent) 72%, transparent);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.58rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  line-height: 1;
}

@keyframes hero-message-signal {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 12px, 0) scale(0.985);
  }

  12% {
    opacity: 0.76;
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  76% {
    opacity: 0.66;
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(-50%, -8px, 0) scale(0.995);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: max(44rem, 96vh);
  min-height: max(44rem, 96svh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(6rem, 11vw, 9rem);
  text-align: center;
}

.hero h1 {
  max-width: none;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(3.7rem, 6.4vw, 5.9rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-line {
  display: block;
  color: inherit;
  white-space: nowrap;
}

.hero-intro {
  max-width: 60rem;
  margin: clamp(28px, 4vw, 42px) 0 0;
  color: #b7afa3;
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
  line-height: 1.7;
  text-wrap: balance;
}

.demo-offer-button {
  min-height: 84px;
  max-width: 36rem;
  padding: 15px 30px;
  border-radius: 20px;
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  font-weight: 800;
}

.hero-cta {
  margin-top: 30px;
}

.primary-button .hero-cta-copy {
  display: grid;
  gap: 5px;
  font-size: inherit;
  line-height: 1.2;
  text-align: center;
}

.primary-button .hero-cta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  line-height: inherit;
}

.primary-button .hero-cta-label {
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-cta-label-mobile {
  display: none;
}

.primary-button .hero-cta-question {
  color: rgb(24 20 12 / 0.7);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.25;
}

.hero-capacity {
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: 14px auto 0;
  padding: 8px 15px;
  border: 1px solid rgb(173 145 216 / 0.38);
  border-radius: 999px;
  background: rgb(38 28 60 / 0.74);
  color: rgb(243 238 227 / 0.86);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
  text-wrap: balance;
  box-shadow: 0 10px 30px rgb(3 3 7 / 0.18);
}

.hero-capacity::before {
  margin-right: 7px;
  color: var(--yellow);
  content: "✦";
}

.hero-capacity::after {
  margin-left: 7px;
  color: var(--yellow);
  content: "✦";
}

.hero-industries {
  max-width: 42rem;
  margin: clamp(28px, 4vw, 42px) 0 0;
  color: rgb(243 238 227 / 0.52);
  font-size: 0.8rem;
  line-height: 1.6;
  text-wrap: balance;
}

.proof-section,
.method-section {
  padding-block: clamp(6rem, 10vw, 9rem);
  scroll-margin-top: 88px;
}

.proof-section {
  background: var(--paper-deep);
}

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

.proof-heading {
  max-width: 62rem;
}

.section-heading.proof-heading h2 {
  max-width: 25ch;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-heading h2,
.testimonials-heading h2,
.method-heading h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  text-wrap: balance;
}

.testimonials-heading h2,
.method-heading h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-heading > p:last-child {
  max-width: 38rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.result-card {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.2vw, 38px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--cream);
}

.result-card-yellow {
  border-top-color: rgb(231 182 74 / 0.75);
  background: linear-gradient(145deg, #211b10, #111016);
}

.result-card-peach {
  border-top-color: rgb(173 145 216 / 0.7);
  background: linear-gradient(145deg, #21182f, #11101a);
}

.result-card-blue {
  border-top-color: rgb(74 183 165 / 0.7);
  background: linear-gradient(145deg, #102524, #0e1118);
}

.result-card-yellow strong {
  color: var(--yellow);
}

.result-card-peach strong {
  color: var(--lilac);
}

.result-card-blue strong {
  color: var(--teal);
}

.result-card p {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 650;
}

.result-card em {
  font-size: 0.76rem;
  font-weight: 600;
}

.result-card div > span {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.04);
  font-size: 0.78rem;
  font-weight: 600;
}

.result-card strong {
  margin-top: auto;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(4.8rem, 8vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.result-card small {
  margin-top: 18px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-footnote {
  max-width: none;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.results-footnote sup {
  color: var(--rust);
  font-weight: 900;
}

.results-math {
  margin: 14px 0 0;
  color: rgb(243 238 227 / 0.76);
  font-size: 0.96rem;
  line-height: 1.65;
}

.results-math strong {
  color: var(--yellow-soft);
}

.testimonials-heading {
  margin-top: clamp(7rem, 13vw, 12rem);
  text-align: center;
}

.testimonials-heading h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.testimonials-heading p {
  max-width: 52rem;
  margin: 1.75rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  text-wrap: balance;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.testimonials-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: clamp(2.75rem, 5vw, 4rem);
}

.testimonials-cta .primary-button {
  margin-top: 0;
}

.testimonial-card {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.testimonial-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 11px;
  background: #030307;
  object-fit: cover;
}

.testimonial-kicker {
  display: block;
  margin: 22px 10px 0;
  color: var(--rust);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  min-height: 6.2em;
  margin: 11px 10px 24px;
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.14rem;
  font-weight: 400;
  line-height: 1.5;
}

.testimonial-card figcaption {
  display: grid;
  gap: 4px;
  padding: 0 10px 12px;
}

.testimonial-card figcaption strong {
  font-size: 0.88rem;
  font-weight: 650;
}

.testimonial-card figcaption span {
  color: var(--muted);
  font-size: 0.78rem;
}

.method-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.method-heading {
  max-width: 62rem;
}

.method-heading > p:last-child {
  max-width: 38rem;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.pictogram-story {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding: 0;
  list-style: none;
}

.pictogram-story::before {
  position: absolute;
  top: 39px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgb(231 182 74 / 0.35), rgb(74 183 165 / 0.4));
  content: "";
}

.pictogram-story::after {
  position: absolute;
  z-index: 0;
  top: 35px;
  left: 10%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--yellow-soft);
  box-shadow: 0 0 18px rgb(231 182 74 / 0.8), 0 0 40px rgb(231 182 74 / 0.35);
  content: "";
  animation: journey-pulse 8s linear infinite;
}

.pictogram-story li {
  position: relative;
  z-index: 1;
  padding-inline: clamp(8px, 1.5vw, 18px);
  text-align: center;
}

.story-icon {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: rgb(243 238 227 / 0.7);
}

.story-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.story-icon > span {
  position: absolute;
  top: -6px;
  right: -4px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(231 182 74 / 0.35);
  border-radius: 999px;
  background: var(--paper);
  color: var(--yellow);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pictogram-story li,
.demo-journey li {
  --journey-delay: 0s;
  --journey-border: var(--line);
  --journey-color: var(--lilac);
  --journey-background: var(--surface);
  --journey-shadow: none;
  --journey-icon-glow: rgb(173 145 216 / 0.9);
}

.pictogram-story li:nth-child(2),
.demo-journey li:nth-child(2) {
  --journey-delay: 1.6s;
  --journey-border: rgb(173 145 216 / 0.9);
  --journey-background:
    radial-gradient(circle at 50% 30%, rgb(173 145 216 / 0.2), transparent 64%),
    var(--surface);
  --journey-shadow: 0 0 18px rgb(173 145 216 / 0.28), inset 0 0 24px rgb(173 145 216 / 0.08);
}

.pictogram-story li:nth-child(3),
.demo-journey li:nth-child(3) {
  --journey-delay: 3.2s;
  --journey-border: rgb(173 145 216 / 0.9);
  --journey-color: var(--yellow-soft);
  --journey-background:
    radial-gradient(circle at 50% 30%, rgb(231 182 74 / 0.15), transparent 64%),
    var(--surface);
  --journey-shadow: 0 0 18px rgb(173 145 216 / 0.28), inset 0 0 24px rgb(231 182 74 / 0.06);
  --journey-icon-glow: rgb(231 182 74 / 0.9);
}

.pictogram-story li:nth-child(4),
.demo-journey li:nth-child(4) {
  --journey-delay: 4.8s;
  --journey-border: rgb(231 182 74 / 0.9);
  --journey-color: var(--yellow-soft);
  --journey-background:
    radial-gradient(circle at 50% 30%, rgb(231 182 74 / 0.2), transparent 64%),
    var(--surface);
  --journey-shadow: 0 0 18px rgb(231 182 74 / 0.3), inset 0 0 24px rgb(231 182 74 / 0.08);
  --journey-icon-glow: rgb(231 182 74 / 0.9);
}

.pictogram-story li:nth-child(5),
.demo-journey li:nth-child(5) {
  --journey-delay: 6.4s;
  --journey-border: rgb(74 183 165 / 0.9);
  --journey-color: var(--teal);
  --journey-background:
    radial-gradient(circle at 50% 30%, rgb(74 183 165 / 0.22), transparent 64%),
    var(--surface);
  --journey-shadow: 0 0 20px rgb(74 183 165 / 0.3), inset 0 0 24px rgb(74 183 165 / 0.08);
  --journey-icon-glow: rgb(74 183 165 / 0.9);
}

.pictogram-story li .story-icon,
.demo-journey li .story-icon {
  animation: journey-stage-active 8s linear var(--journey-delay) infinite;
}

.pictogram-story li .story-icon svg,
.demo-journey li .story-icon svg {
  animation: journey-icon-active 8s linear var(--journey-delay) infinite;
}

@keyframes journey-pulse {
  0% {
    left: 10%;
    opacity: 0;
  }

  3%,
  80% {
    opacity: 1;
  }

  20% {
    left: 30%;
  }

  40% {
    left: 50%;
  }

  60% {
    left: 70%;
  }

  80%,
  100% {
    left: 90%;
  }

  96%,
  100% {
    opacity: 0;
  }
}

@keyframes journey-pulse-vertical {
  0% {
    top: var(--journey-dot-start);
    opacity: 0;
  }

  3%,
  80% {
    opacity: 1;
  }

  20% {
    top: calc(25% + var(--journey-dot-quarter-adjust));
  }

  40% {
    top: calc(50% - 4px);
  }

  60% {
    top: calc(75% - var(--journey-dot-three-quarter-adjust));
  }

  80%,
  100% {
    top: calc(100% - var(--journey-dot-end));
  }

  96%,
  100% {
    opacity: 0;
  }
}

@keyframes journey-stage-active {
  0%,
  7% {
    border-color: var(--journey-border);
    background: var(--journey-background);
    box-shadow: var(--journey-shadow);
    color: var(--journey-color);
  }

  16%,
  100% {
    border-color: var(--line);
    background: var(--surface);
    box-shadow: none;
    color: rgb(243 238 227 / 0.7);
  }
}

@keyframes journey-icon-active {
  0%,
  7% {
    filter: drop-shadow(0 0 6px var(--journey-icon-glow));
  }

  16%,
  100% {
    filter: none;
  }
}

.pictogram-story h3 {
  margin: 22px 0 0;
  font-size: clamp(0.98rem, 1.5vw, 1.16rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.pictogram-story p {
  max-width: 20ch;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

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

.why-copy p {
  margin: 0;
  color: rgb(255 250 242 / 0.74);
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  line-height: 1.55;
}

.why-copy p + p {
  margin-top: 24px;
}

.why-copy strong {
  color: var(--cream);
}

.ownership-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid rgb(231 182 74 / 0.55);
  background: transparent;
  color: var(--yellow-soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 650;
  transition: border-color 160ms ease, color 160ms ease;
}

.ownership-trigger span {
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.ownership-trigger:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.ownership-trigger:hover span {
  transform: translateX(3px);
}

.ownership-dialog {
  width: min(calc(100% - 40px), 58rem);
  max-height: min(88dvh, 58rem);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgb(243 238 227 / 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgb(66 44 106 / 0.38), transparent 26rem),
    #0e0d18;
  box-shadow: 0 32px 100px rgb(0 0 0 / 0.72);
  color: var(--cream);
}

.ownership-dialog::backdrop {
  background: rgb(3 3 8 / 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ownership-dialog[open] {
  animation: ownership-dialog-in 180ms ease-out;
}

.ownership-dialog-inner {
  padding: clamp(28px, 5vw, 56px);
}

.ownership-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.ownership-dialog-header .eyebrow {
  margin-bottom: 15px;
}

.ownership-dialog-header h2 {
  max-width: 18ch;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.ownership-dialog-close {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.035);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  transition: background 160ms ease, color 160ms ease;
}

.ownership-dialog-close span {
  margin-top: -2px;
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1;
}

.ownership-dialog-close:hover {
  background: rgb(255 255 255 / 0.08);
  color: var(--cream);
}

.ownership-dialog-intro {
  max-width: 40rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.ownership-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ownership-details section {
  padding: clamp(24px, 4vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ownership-detail-number {
  display: block;
  margin-bottom: 26px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.ownership-details h3 {
  max-width: 20ch;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.ownership-details p {
  color: rgb(243 238 227 / 0.68);
  font-size: 0.88rem;
  line-height: 1.65;
}

.ownership-details p {
  margin: 18px 0 0;
}

.ownership-details p + p {
  margin-top: 12px;
}

.ownership-details a {
  width: fit-content;
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  color: var(--yellow-soft);
  font-size: 0.8rem;
  font-weight: 650;
}

.ownership-details a:hover {
  color: var(--cream);
}

.demo-dialog {
  width: min(calc(100% - 40px), 48rem);
  max-width: none;
  max-height: min(96dvh, 58rem);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgb(243 238 227 / 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% 0%, rgb(76 45 87 / 0.28), transparent 30rem),
    #0e0d18;
  box-shadow: 0 32px 100px rgb(0 0 0 / 0.72);
  color: var(--cream);
}

.demo-dialog::backdrop {
  background: rgb(3 3 8 / 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.demo-dialog[open] {
  animation: ownership-dialog-in 180ms ease-out;
}

.demo-dialog-inner {
  position: relative;
}

.demo-dialog-close-form {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
}

.demo-dialog-close {
  background: rgb(14 13 24 / 0.88);
  box-shadow: 0 8px 28px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.demo-dialog-copy {
  min-width: 0;
  padding: clamp(36px, 5vw, 56px);
}

.demo-dialog-copy .eyebrow {
  margin-bottom: 14px;
}

.demo-dialog-copy h2 {
  max-width: none;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(2.7rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.demo-dialog-copy h2:focus {
  outline: none;
}

.demo-dialog-intro {
  max-width: 38rem;
  margin: 18px 0 0;
  color: rgb(243 238 227 / 0.7);
  font-size: 0.94rem;
  line-height: 1.7;
}

.demo-keep-stamp {
  width: fit-content;
  margin: 18px 12px -6px auto;
  padding: 10px 16px 9px;
  border: 2px solid var(--yellow);
  background: linear-gradient(145deg, rgb(38 28 60 / 0.92), rgb(16 15 28 / 0.96));
  box-shadow: 5px 6px 0 rgb(231 182 74 / 0.16);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(2.5deg);
}

.demo-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.demo-journey::before {
  position: absolute;
  top: 24px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, rgb(231 182 74 / 0.34), rgb(74 183 165 / 0.38));
  content: "";
}

.demo-journey::after {
  position: absolute;
  z-index: 0;
  top: 20px;
  left: 9%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow-soft);
  box-shadow: 0 0 14px rgb(231 182 74 / 0.75), 0 0 28px rgb(231 182 74 / 0.3);
  content: "";
  animation: demo-journey-pulse 8s linear infinite;
}

.demo-journey li {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
}

.demo-journey .story-icon {
  width: 48px;
  height: 48px;
  margin-inline: auto;
}

.demo-journey .story-icon svg {
  width: 20px;
  height: 20px;
}

.demo-journey .story-icon > span {
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  font-size: 0.48rem;
}

.demo-journey h3 {
  margin: 11px auto 0;
  color: rgb(243 238 227 / 0.72);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  text-wrap: balance;
}

@keyframes demo-journey-pulse {
  0% {
    left: 9%;
    opacity: 0;
  }

  3%,
  80% {
    opacity: 1;
  }

  20% {
    left: 29.5%;
  }

  40% {
    left: 50%;
  }

  60% {
    left: 70.5%;
  }

  80%,
  100% {
    left: 91%;
  }

  96%,
  100% {
    opacity: 0;
  }
}

.demo-dialog-form-frame {
  position: relative;
  height: 40.4rem;
  margin: 26px 0 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface-strong);
}

.demo-dialog-form-frame::before,
.demo-dialog-form-frame::after {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  background: var(--surface-strong);
  content: "";
  pointer-events: none;
}

.demo-dialog-form-frame::before {
  top: 0;
  height: 3px;
}

.demo-dialog-form-frame::after {
  bottom: 0;
  height: 4px;
}

.demo-dialog-form-frame iframe {
  width: calc(100% + 8px);
  height: 100%;
  display: block;
  margin-left: -4px;
  border: 0;
  background: var(--surface-strong);
}

.demo-dialog-form-frame-mask {
  position: absolute;
  z-index: 3;
  inset: 0;
  border-right: 4px solid var(--surface-strong);
  border-left: 4px solid var(--surface-strong);
  border-radius: inherit;
  pointer-events: none;
}

@keyframes ownership-dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  margin-top: clamp(6rem, 11vw, 10rem);
  padding: clamp(40px, 7vw, 80px);
  border: 1px solid rgb(231 182 74 / 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgb(70 48 111 / 0.6), transparent 23rem),
    var(--surface-strong);
  text-align: left;
}

.closing-video {
  width: 100%;
}

.closing-video-poster,
.closing-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 1px solid rgb(243 238 227 / 0.15);
  border-radius: 14px;
  background: #05050b;
  box-shadow: 0 22px 58px rgb(0 0 0 / 0.32);
}

.closing-video-poster {
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.closing-video-poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgb(5 5 11 / 0.25));
  content: "";
  pointer-events: none;
}

.closing-video-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.closing-video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(243 238 227 / 0.35);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 12px 34px rgb(0 0 0 / 0.34);
  color: var(--card-ink);
  transform: translate(-50%, -50%);
  transition: background 160ms ease, transform 160ms ease;
}

.closing-video-play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
  fill: currentColor;
}

.closing-video-poster:hover img {
  filter: brightness(0.92);
  transform: scale(1.012);
}

.closing-video-poster:hover .closing-video-play {
  background: var(--yellow-soft);
  transform: translate(-50%, -50%) scale(1.05);
}

.closing-details {
  min-width: 0;
}

.closing-details .eyebrow {
  margin-bottom: 24px;
  color: var(--yellow-soft);
}

.founders-signoff {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.founder-card {
  min-height: 13rem;
  display: grid;
  grid-template-columns: minmax(10rem, 36%) 1fr;
  align-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

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

.founder-card-copy {
  padding: clamp(22px, 4vw, 38px);
}

.founder-role {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-card h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.founder-description {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.final-invitation {
  position: relative;
  margin-top: clamp(5.5rem, 10vw, 9rem);
  padding: clamp(4.5rem, 8vw, 7rem) 24px 0;
  text-align: center;
}

.final-invitation::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 46rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(231 182 74 / 0.38), transparent);
  content: "";
  transform: translateX(-50%);
}

.final-invitation h2 {
  max-width: 22ch;
  margin: 0 auto;
  color: var(--cream);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.final-invitation .primary-button {
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

.primary-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  padding: 0 26px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--card-ink);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease;
}

.primary-button span {
  font-size: 1.3rem;
  line-height: 1;
}

.primary-button:hover {
  transform: translateY(-3px);
  background: var(--yellow-soft);
  box-shadow: 0 12px 28px rgb(231 182 74 / 0.18);
}

.site-footer {
  padding: 4rem 0;
  background: #05050b;
  color: rgb(255 250 242 / 0.62);
}

.site-footer .brand {
  color: var(--cream);
}

.site-footer .brand span span {
  color: var(--yellow);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-top {
  padding-bottom: 2.5rem;
}

.footer-top > p,
.footer-bottom,
.legal-links {
  font-size: 0.78rem;
}

.footer-top > p {
  margin: 0;
}

.legal-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.legal-links a,
.social-links a {
  transition: color 160ms ease, border-color 160ms ease;
}

.legal-links a:hover,
.social-links a:hover {
  color: var(--cream);
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 250 242 / 0.18);
  border-radius: 999px;
}

.social-links svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgb(255 250 242 / 0.14);
}

.footer-bottom span:last-child {
  color: var(--yellow);
}

@media (max-width: 900px) {
  .hero-message-layer {
    display: none;
  }

  .results-grid,
  .testimonials-grid,
  .founders-signoff {
    grid-template-columns: 1fr;
  }

  .result-card {
    min-height: 20rem;
    transform: none;
  }

  .testimonials-grid {
    justify-items: center;
  }

  .testimonial-card {
    width: min(100%, 28rem);
  }

  .testimonial-card blockquote {
    min-height: 0;
  }

  .pictogram-story {
    max-width: 40rem;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pictogram-story::before {
    top: 36px;
    right: auto;
    bottom: 36px;
    left: 35px;
    width: 1px;
    height: auto;
  }

  .pictogram-story::after {
    --journey-dot-start: 32px;
    --journey-dot-quarter-adjust: 14px;
    --journey-dot-three-quarter-adjust: 22px;
    --journey-dot-end: 40px;
    top: var(--journey-dot-start);
    left: 31px;
    animation-name: journey-pulse-vertical;
  }

  .pictogram-story li {
    min-height: 72px;
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    gap: 7px 20px;
    align-items: center;
    padding: 0;
    text-align: left;
  }

  .story-icon {
    width: 72px;
    height: 72px;
    grid-row: 1 / 3;
    margin: 0;
  }

  .pictogram-story h3 {
    align-self: end;
    margin: 0;
  }

  .pictogram-story p {
    max-width: 34rem;
    align-self: start;
    margin: 0;
  }

  .closing-cta {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ownership-details {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .hero-message-layer {
    display: block;
  }

  .hero-message {
    top: var(--message-top);
    bottom: auto;
    left: auto;
    max-width: min(4.5rem, calc((100vw - 11rem) / 2 - 12px));
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .hero-message-left {
    left: 10px;
    animation-name: hero-message-signal-left;
  }

  .hero-message-right {
    right: 10px;
    animation-name: hero-message-signal-right;
  }

  .hero-message-left::before,
  .hero-message-right::before {
    top: 50%;
    bottom: auto;
  }

  .hero-message-left::before {
    left: -7px;
    transform: translateY(-50%) rotate(135deg);
  }

  .hero-message-right::before {
    right: -7px;
    left: auto;
    transform: translateY(-50%) rotate(-45deg);
  }

  .hero-message-left::after,
  .hero-message-right::after {
    top: 50%;
    width: var(--message-stem);
    height: 12px;
    transform: translateY(-50%);
  }

  .hero-message-left::after {
    right: calc(100% + 8px);
    left: auto;
    background:
      radial-gradient(circle at 2px 50%, var(--message-accent) 0 1.5px, transparent 2.5px),
      linear-gradient(
          to right,
          color-mix(in srgb, var(--message-accent) 18%, transparent),
          color-mix(in srgb, var(--message-accent) 48%, transparent)
        )
        6px 50% / calc(100% - 6px) 1px no-repeat;
  }

  .hero-message-right::after {
    right: auto;
    left: calc(100% + 8px);
    background:
      radial-gradient(
        circle at calc(100% - 2px) 50%,
        var(--message-accent) 0 1.5px,
        transparent 2.5px
      ),
      linear-gradient(
          to right,
          color-mix(in srgb, var(--message-accent) 48%, transparent),
          color-mix(in srgb, var(--message-accent) 18%, transparent)
        )
        0 50% / calc(100% - 6px) 1px no-repeat;
  }

  .hero-message-time {
    top: calc(100% + 6px);
    font-size: 0.52rem;
  }

  .header-inner {
    min-height: 56px;
    padding-left: 12px;
  }

  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 10px 13px;
    font-size: 0.72rem;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 8.75rem 3.5rem;
  }

  .hero {
    background-position: center, center, 72% center;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 11.5vw, 3.75rem);
  }

  .hero-line {
    white-space: normal;
  }

  .hero-intro {
    font-size: 1.05rem;
  }

  .demo-offer-button {
    width: 14.75rem;
    min-width: 0;
    min-height: 82px;
    padding: 13px 18px;
    line-height: 1.25;
  }

  .primary-button .hero-cta-label {
    font-size: 0.82rem;
  }

  .primary-button .hero-cta-question {
    font-size: 0.68rem;
  }

  .hero-cta-label-desktop {
    display: none;
  }

  .hero-cta-label-mobile {
    display: inline;
  }

  .hero-industries {
    margin-top: 36px;
    font-size: 0.76rem;
  }

  .proof-section,
  .method-section {
    padding-block: 5rem;
  }

  .section-heading h2,
  .testimonials-heading h2,
  .method-heading h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .results-grid,
  .testimonials-grid {
    margin-top: 2.5rem;
  }

  .result-card {
    min-height: 18rem;
  }

  .testimonials-heading {
    margin-top: 7rem;
  }

  .pictogram-story {
    gap: 24px;
  }

  .pictogram-story::before {
    top: 32px;
    bottom: 32px;
    left: 31px;
  }

  .pictogram-story::after {
    --journey-dot-start: 28px;
    --journey-dot-quarter-adjust: 12px;
    --journey-dot-three-quarter-adjust: 20px;
    --journey-dot-end: 36px;
    top: var(--journey-dot-start);
    left: 27px;
  }

  .pictogram-story li {
    min-height: 64px;
    grid-template-columns: 64px 1fr;
    gap: 6px 16px;
  }

  .story-icon {
    width: 64px;
    height: 64px;
  }

  .story-icon svg {
    width: 28px;
    height: 28px;
  }

  .closing-cta {
    border-radius: 22px;
  }

  .closing-cta {
    padding: 18px 18px 32px;
  }

  .closing-details {
    padding: 0 6px;
  }

  .closing-video-poster,
  .closing-video-frame {
    border-radius: 12px;
  }

  .closing-video-play {
    width: 58px;
    height: 58px;
  }

  .founder-card {
    min-height: 10rem;
    grid-template-columns: minmax(8rem, 40%) 1fr;
  }

  .founder-card-copy {
    padding: 20px 18px;
  }

  .founder-card h3 {
    font-size: 1.45rem;
  }

  .founder-description {
    font-size: 0.78rem;
  }

  .ownership-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 16px;
  }

  .ownership-dialog-inner {
    padding: 24px 18px 18px;
  }

  .ownership-dialog-header {
    gap: 18px;
  }

  .ownership-dialog-header h2 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .ownership-dialog-close {
    width: 38px;
    height: 38px;
  }

  .ownership-details {
    margin-top: 32px;
  }

  .ownership-details section {
    padding: 24px 20px;
  }

  .demo-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 16px;
  }

  .demo-dialog-close-form {
    top: 10px;
    right: 10px;
  }

  .demo-dialog-copy {
    padding: 56px 18px 24px;
  }

  .demo-dialog-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.35rem);
  }

  .demo-keep-stamp {
    margin: 22px auto 0;
    font-size: 0.72rem;
    transform: rotate(-2deg);
  }

  .demo-journey {
    gap: 2px;
    margin-top: 26px;
  }

  .demo-journey::before {
    top: 21px;
  }

  .demo-journey .story-icon {
    width: 42px;
    height: 42px;
  }

  .demo-journey h3 {
    font-size: 0.58rem;
  }

  .demo-dialog-form-frame {
    height: 40.4rem;
    margin-top: 24px;
    border-radius: 12px;
  }

  .primary-button {
    width: auto;
    min-width: 11rem;
    padding-inline: 26px;
  }

  .legal-links,
  .social-links {
    flex-wrap: wrap;
  }
}

@keyframes hero-message-signal-left {
  0% {
    opacity: 0;
    transform: translate3d(calc(-100% - 48px), -50%, 0) scale(0.985);
  }

  14% {
    opacity: 0.62;
    transform: translate3d(0, -50%, 0) scale(1);
  }

  76% {
    opacity: 0.54;
    transform: translate3d(0, -50%, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(calc(-100% - 48px), -50%, 0) scale(0.99);
  }
}

@keyframes hero-message-signal-right {
  0% {
    opacity: 0;
    transform: translate3d(calc(100% + 48px), -50%, 0) scale(0.985);
  }

  14% {
    opacity: 0.62;
    transform: translate3d(0, -50%, 0) scale(1);
  }

  76% {
    opacity: 0.54;
    transform: translate3d(0, -50%, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(calc(100% + 48px), -50%, 0) scale(0.99);
  }
}

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

  .hero-message-layer {
    display: none;
  }

  .pictogram-story::after,
  .demo-journey::after {
    display: none;
  }

  .pictogram-story .story-icon,
  .demo-journey .story-icon,
  .pictogram-story .story-icon svg,
  .demo-journey .story-icon svg {
    animation: none;
  }

  .ownership-dialog[open],
  .demo-dialog[open] {
    animation: none;
  }
}
