/* Mentionloom marketing compositions, built on the installed Orbit 0.2 runtime.
   Shared controls, fonts, tokens and comfortable density are not reimplemented. */
:root {
  --marketing-width: 1120px;
  --section-space: 128px;
  --hero-size: clamp(3.25rem, 7.2vw, 5.75rem);
  --heading-size: clamp(2.25rem, 4.4vw, 3.5rem);
  --marketing-shadow:
    0 2px 4px #18192503, 0 12px 40px #18192508, 0 32px 80px #2457c506;
  --scene-line: #2c78fc28;
}
.marketing-app {
  overflow-x: clip;
}
.marketing-app * {
  box-sizing: border-box;
}
.marketing-app a {
  color: inherit;
  text-decoration: none;
}
.marketing-app button {
  cursor: pointer;
}
.marketing-app .wrap {
  width: min(var(--marketing-width), calc(100% - 64px));
  margin-inline: auto;
}
.marketing-app .section-space {
  padding-top: var(--section-space);
}
.marketing-app .eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.11em;
  color: var(--accent-text);
}
.marketing-app .button.primary {
  background: var(--accent-text);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}
.marketing-app .button.primary:hover {
  background: var(--text);
}
.marketing-app .button {
  font-size: var(--text-sm);
  padding: 12px 20px;
  min-height: 48px;
  transition:
    background var(--motion-fast),
    box-shadow var(--motion-fast),
    transform var(--motion-fast);
}
.marketing-app .button:hover {
  transform: translateY(-1px);
}
.marketing-app .button:active {
  transform: translateY(1px);
}
.marketing-app .button.secondary {
  background: var(--surface);
}
.marketing-app .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent-text);
}
.marketing-app .text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.marketing-app .wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
}
.marketing-app .wordmark img {
  display: block;
  width: 184px;
  height: auto;
}
.marketing-app .marketing-header {
  height: 88px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 20;
  background: var(--surface);
}
.marketing-app .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}
.marketing-app .header-content nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 18px;
}
.marketing-app .header-content nav a,
.marketing-app .demo-link {
  font-size: var(--text-sm);
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}
.marketing-app .header-content nav a:hover,
.marketing-app .demo-link:hover {
  color: var(--text);
}
.marketing-app .header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.marketing-app .header-actions .button {
  padding-inline: 17px;
  min-height: 44px;
}
.marketing-app .header-actions .icon {
  width: 16px;
}
.marketing-app .hero {
  padding-top: 68px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.marketing-app .announcement {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  padding: 5px 10px 5px 12px;
  border-radius: 999px;
  font-size: var(--text-xs);
  min-height: 36px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 25px;
}
.marketing-app .announcement .icon {
  height: 14px;
  width: 14px;
}
.marketing-app .announcement-label {
  padding-left: 10px;
  border-left: 1px solid var(--border);
  color: var(--accent-text);
}
.marketing-app .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-text);
}
.marketing-app .hero h1 {
  font-size: var(--hero-size);
  line-height: 1.035;
  letter-spacing: -0.068em;
  font-weight: 500;
}
.marketing-app .hero h1 span {
  color: var(--accent-text);
}
.marketing-app .hero-copy {
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.35px;
  margin: 24px auto 0;
  color: var(--text);
}
.marketing-app .hero-detail {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 10px;
}
.marketing-app .hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}
.marketing-app .hero-note {
  font-size: var(--text-xs);
  margin-top: 14px;
  color: var(--muted);
}
.marketing-app .mobile-break {
  display: none;
}
.marketing-app .discovery-scene {
  height: 555px;
  position: relative;
  isolation: isolate;
  margin-top: 0;
  overflow: hidden;
  contain: layout paint;
  background: radial-gradient(
    ellipse at 50% 70%,
    var(--sky-1) 0%,
    #f9f8ff 38%,
    #fff 73%
  );
}
.marketing-app .scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--scene-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--scene-line) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(500px) rotateX(65deg) scale(2);
  transform-origin: center 85%;
  mask-image: radial-gradient(ellipse at 50% 100%, #000 0%, transparent 58%);
  opacity: 0.8;
  z-index: -2;
}
.marketing-app .globe-wrap {
  position: absolute;
  width: 590px;
  height: 590px;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  mask-image: linear-gradient(#000 75%, transparent 98%);
}
.marketing-app #discovery-globe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.marketing-app .css-globe {
  position: absolute;
  inset: 54px;
  border: 1px solid var(--scene-line);
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    #fff,
    var(--sky-1) 65%,
    var(--sky-2)
  );
  box-shadow:
    inset -25px -25px 60px #2c78fc25,
    0 0 75px #2c78fc21;
  overflow: hidden;
}
.marketing-app .css-globe span {
  position: absolute;
  inset: 0;
  border: 1px solid #2c78fc42;
  border-radius: 50%;
  transform: rotate(25deg) scaleX(0.5);
}
.marketing-app .css-globe span:nth-child(2) {
  transform: rotate(-35deg) scaleX(0.7);
}
.marketing-app .css-globe span:nth-child(3) {
  transform: rotate(80deg) scaleX(0.3);
}
.marketing-app .globe-ready .css-globe {
  opacity: 0;
}
.marketing-app .scene-orbit {
  position: absolute;
  left: 50%;
  top: 90px;
  width: 880px;
  height: 280px;
  border: 1px solid var(--scene-line);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-14deg);
  z-index: -1;
}
.marketing-app .orbit-two {
  transform: translateX(-50%) rotate(16deg);
  top: 130px;
  width: 990px;
  height: 240px;
}
.marketing-app .scene-cards {
  height: 100%;
  position: relative;
}
.marketing-app .floating-card {
  background: #ffffffed;
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: var(--marketing-shadow);
  border-radius: var(--radius-card);
  position: absolute;
  animation: levitate 7s ease-in-out infinite;
  will-change: transform;
}
.marketing-app .question-float {
  top: 105px;
  left: 15px;
  width: 310px;
  padding: 21px;
  transform: rotate(-3deg);
  animation-delay: -2s;
}
.marketing-app .card-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--text-xs);
  color: var(--muted);
  margin-bottom: 16px;
}
.marketing-app .card-label img {
  width: 22px;
  height: 22px;
}
.marketing-app .card-label > .icon {
  margin-left: auto;
  color: var(--success-text);
  width: 18px;
}
.marketing-app .tiny-dot {
  width: 5px;
  height: 5px;
  background: var(--green-4);
  border-radius: 50%;
  margin-left: auto;
}
.marketing-app .floating-card p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.3px;
}
.marketing-app .question-tags {
  display: flex;
  gap: 6px;
  margin-top: 17px;
}
.marketing-app .question-tags span {
  font-size: 11px;
  color: var(--muted);
  background: var(--subtle);
  padding: 3px 8px;
  border-radius: 5px;
}
.marketing-app .question-tags span:last-child {
  color: var(--accent-text);
  background: var(--sky-1);
}
.marketing-app .answer-float {
  right: 0;
  top: 210px;
  width: 315px;
  padding: 21px;
  animation-delay: -4s;
}
.marketing-app mark {
  background: var(--sky-2);
  color: var(--accent-text);
  border-radius: 5px;
  padding: 1px 5px;
}
.marketing-app .citation-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  margin-top: 18px;
  color: var(--muted);
}
.marketing-app .citation-pill .icon {
  width: 13px;
  height: 13px;
}
.marketing-app .signal-float {
  left: 120px;
  bottom: 75px;
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  align-items: center;
  animation-delay: -1s;
}
.marketing-app .signal-float > .icon {
  width: 24px;
  height: 24px;
  color: var(--accent-text);
}
.marketing-app .signal-float strong {
  font-size: var(--text-xs);
  font-weight: 500;
  display: block;
}
.marketing-app .signal-float span {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.marketing-app .provider-node {
  position: absolute;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--marketing-shadow);
  animation: levitate 8s ease-in-out infinite;
}
.marketing-app .provider-node img {
  width: 29px;
  height: 29px;
}
.marketing-app .node-claude {
  right: 210px;
  top: 55px;
  transform: rotate(10deg);
}
.marketing-app .node-gemini {
  right: 115px;
  bottom: 70px;
  transform: rotate(-10deg);
  animation-delay: -5s;
}
.marketing-app .scene-footer {
  position: absolute;
  bottom: 6px;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 11px;
  color: var(--muted);
}
.marketing-app .motion-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  min-height: 44px;
  padding: 8px;
  background: none;
  border: 0;
}
.marketing-app .motion-toggle .icon {
  width: 13px;
  height: 13px;
}
.marketing-app.motion-paused * {
  animation-play-state: paused !important;
}
.marketing-app .provider-strip {
  padding: 42px 0 10px;
  overflow: hidden;
}
.marketing-app .provider-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marketing-app .provider-track {
  display: flex;
  width: max-content;
  animation: provider-marquee 28s linear infinite;
}
.marketing-app .provider-group {
  display: flex;
  align-items: center;
  gap: 58px;
  padding-right: 58px;
  flex: none;
}
.marketing-app .provider-group > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}
.marketing-app .provider-strip strong {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.35px;
}
.marketing-app .provider-strip img {
  height: 24px;
  width: 24px;
}
@keyframes provider-marquee {
  to { transform: translateX(-50%); }
}
.marketing-app .provider-marquee:hover .provider-track {
  animation-play-state: paused;
}
.marketing-app .section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.marketing-app h2 {
  font-size: var(--heading-size);
  letter-spacing: -0.055em;
  line-height: 1.09;
  margin-top: 15px;
}
.marketing-app .section-heading > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 20px;
}
.marketing-app .story-nav {
  justify-content: center;
  margin: 0 auto 28px;
  border: 0;
  gap: 5px;
  width: max-content;
  max-width: 100%;
  background: var(--subtle);
  padding: 5px;
  border-radius: 999px;
}
.marketing-app .story-nav button {
  min-height: 46px;
  border-radius: 999px;
  border: 0;
  padding: 10px 21px;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.marketing-app .story-nav button:after {
  display: none;
}
.marketing-app .story-nav button.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-card);
}
.marketing-app .story-nav .icon {
  width: 17px;
  height: 17px;
}
.marketing-app .product-stage {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--marketing-shadow);
  overflow: hidden;
  position: relative;
}
.marketing-app .stage-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--border);
}
.marketing-app .sample-company {
  display: flex;
  gap: 12px;
  align-items: center;
}
.marketing-app .acme-mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 25%;
  overflow: hidden;
}
.marketing-app .acme-mark > img[src] { display: block; width: 100%; height: 100%; object-fit: contain; }
.marketing-app .sample-company strong {
  font-size: var(--text-base);
  font-weight: 500;
}
.marketing-app .sample-company div > span {
  display: block;
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 1px;
}
.marketing-app .stage-toolbar .badge {
  font-size: 11px;
}
.marketing-app .engine-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 30px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.marketing-app .engine-controls > span {
  font-size: var(--text-xs);
  color: var(--muted);
}
.marketing-app .engine-controls .segmented {
  background: var(--subtle);
  max-width: 880px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.marketing-app .engine-controls button {
  font-size: var(--text-xs);
  min-height: 40px;
  padding: 7px 11px;
}
.marketing-app .engine-controls button > span {
  font-size: inherit;
  color: inherit;
}
.marketing-app .engine-controls img {
  width: 17px;
  height: 17px;
}
.marketing-app .story-panel {
  min-height: 352px;
  padding: 0;
  outline-offset: -4px;
}
.marketing-app .visibility-panel {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
}
.marketing-app .visibility-main {
  padding: 26px 30px 24px;
  min-width: 0;
}
.marketing-app .visibility-metric > span {
  font-size: var(--text-sm);
  color: var(--muted);
}
.marketing-app .visibility-metric > div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 7px;
}
.marketing-app .visibility-metric strong {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -2px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.marketing-app .delta {
  font-size: var(--text-xs);
  color: var(--success-text);
  background: var(--green-1);
  border-radius: 5px;
  padding: 3px 7px;
}
.marketing-app .visibility-metric p {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 5px;
}
.marketing-app .visibility-chart {
  height: 170px;
  margin-top: 20px;
}
.marketing-app .visibility-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.marketing-app .plot-axis {
  font-size: 11px;
  fill: var(--muted);
}
.marketing-app .plot-grid {
  stroke: var(--border);
  stroke-width: 1;
}
.marketing-app .plot-current {
  fill: none;
  stroke: var(--accent-text);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.marketing-app .plot-previous {
  fill: none;
  stroke: #aaa4b4;
  stroke-width: 1.3;
  stroke-dasharray: 4 4;
}
.marketing-app .chart-legend {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 13px;
}
.marketing-app .chart-legend > span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.marketing-app .chart-legend i {
  width: 15px;
  height: 2px;
  background: var(--accent-text);
}
.marketing-app .chart-legend .previous-key {
  background: #aaa4b4;
}
.marketing-app .competitor-panel {
  border-left: 1px solid var(--border);
  padding: 27px 26px;
}
.marketing-app .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.marketing-app .panel-title h3 {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: -0.2px;
}
.marketing-app .panel-title > .icon {
  height: 17px;
  width: 17px;
  color: var(--muted);
}
.marketing-app .competitor-panel > p {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 5px;
}
.marketing-app #competitor-rows {
  margin-top: 21px;
  display: grid;
  gap: 8px;
}
.marketing-app .competitor-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: var(--text-sm);
  min-height: 46px;
  isolation: isolate;
  gap: 10px;
}
.marketing-app .competitor-row:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--share);
  background: var(--subtle);
  border-radius: 6px;
  z-index: -1;
  transition: width var(--motion-data) var(--ease-out);
}
.marketing-app .competitor-row.self:before {
  background: var(--sky-1);
}
.marketing-app .competitor-row > span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.marketing-app .competitor-row img {
  width: 19px;
  height: 19px;
}
.marketing-app .competitor-row .acme-mark {
  width: 20px;
  height: 20px;
  font-size: 15px;
  border-radius: 5px;
}
.marketing-app .competitor-row b {
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.marketing-app .stage-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding: 10px 30px;
  background: var(--background-subtle);
}
.marketing-app .stage-bottom p {
  font-size: var(--text-xs);
  color: var(--muted);
}
.marketing-app .stage-bottom .text-link {
  font-size: var(--text-xs);
}
.marketing-app .questions-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.marketing-app .questions-panel > div {
  padding: 26px 28px;
}
.marketing-app .panel-description {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 7px;
}
.marketing-app #question-rows {
  margin-top: 16px;
}
.marketing-app .question-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 12px;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: none;
  text-align: left;
  font-size: var(--text-sm);
  line-height: 1.6;
  border-radius: 7px;
  transition: background var(--motion-fast);
}
.marketing-app .question-row:hover,
.marketing-app .question-row[aria-pressed="true"] {
  background: var(--sky-1);
}
.marketing-app .question-row > span:last-child {
  color: var(--accent-text);
  font-size: var(--text-xs);
  white-space: nowrap;
}
.marketing-app .sample-answer {
  margin: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px;
  background: var(--background-subtle);
}
.marketing-app .sample-answer .card-label {
  font-size: var(--text-xs);
  margin-bottom: 15px;
}
.marketing-app .sample-answer p {
  font-size: var(--text-sm);
  line-height: 1.8;
}
.marketing-app .sample-answer .answer-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 17px;
}
.marketing-app .sample-answer .badge {
  margin-top: 18px;
  font-size: 11px;
}
.marketing-app .opportunities-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  padding: 30px;
  gap: 36px;
}
.marketing-app .opportunity-intro h3 {
  font-size: 24px;
  letter-spacing: -0.8px;
  margin-top: 13px;
}
.marketing-app .opportunity-intro p {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-top: 12px;
}
.marketing-app .opportunity-intro .text-link {
  margin-top: 13px;
}
.marketing-app .icon-tile {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--sky-1);
  color: var(--accent-text);
  border-radius: 11px;
}
.marketing-app .opportunity-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 17px;
  margin-bottom: 10px;
  background: var(--background-subtle);
}
.marketing-app .opportunity-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: var(--text-sm);
  min-height: 70px;
  cursor: pointer;
  list-style: none;
}
.marketing-app .opportunity-item summary span {
  display: block;
  font-size: 11px;
  color: var(--accent-text);
  margin-bottom: 3px;
}
.marketing-app .opportunity-item summary .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.marketing-app .opportunity-item p {
  font-size: var(--text-sm);
  color: var(--muted);
  padding-bottom: 17px;
}
.marketing-app .opportunity-item[open] .icon {
  transform: rotate(45deg);
}
.marketing-app .value-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding-top: 30px;
}
.marketing-app .value-trio > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.marketing-app .value-trio .icon {
  color: var(--accent-text);
  height: 18px;
  width: 18px;
  margin-top: 3px;
}
.marketing-app .value-trio p {
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.85;
}
.marketing-app .value-trio strong {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
}
.marketing-app .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.marketing-app .feature-card {
  border-radius: 24px;
  background: var(--background-subtle);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  min-width: 0;
}
.marketing-app .feature-copy {
  padding: 34px 34px 0;
}
.marketing-app .feature-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--accent-text);
}
.marketing-app .feature-label .icon {
  width: 16px;
  height: 16px;
}
.marketing-app .feature-copy h3 {
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -1.1px;
  margin-top: 16px;
}
.marketing-app .feature-copy p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.8;
  max-width: 370px;
  margin-top: 14px;
}
.marketing-app .source-visual,
.marketing-app .funnel-visual {
  margin: 30px 24px 24px;
  padding: 22px 23px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.marketing-app .visual-table-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}
.marketing-app .source-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
}
.marketing-app .source-row > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.marketing-app .source-row .icon {
  width: 16px;
  height: 16px;
  color: var(--muted);
}
.marketing-app .source-row b {
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.marketing-app .visual-footnote {
  font-size: 11px;
  display: block;
  color: var(--muted);
  margin-top: 17px;
  line-height: 1.6;
}
.marketing-app .funnel-stats {
  display: flex;
  gap: 50px;
}
.marketing-app .funnel-stats span {
  font-size: var(--text-xs);
  color: var(--muted);
  display: block;
}
.marketing-app .funnel-stats strong {
  font-size: 32px;
  letter-spacing: -1px;
  font-weight: 500;
  display: block;
  margin-top: 4px;
}
.marketing-app .funnel-bars {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}
.marketing-app .funnel-bar {
  background: var(--sky-1);
  border-radius: 5px;
  padding: 9px 12px;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  min-width: 130px;
  gap: 18px;
  color: var(--accent-text);
}
.marketing-app .funnel-bar:nth-child(2) {
  background: var(--sky-2);
}
.marketing-app .funnel-bar:last-child {
  background: var(--accent-text);
  color: var(--surface);
}
.marketing-app .action-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin: 30px 24px 24px;
  box-shadow: var(--shadow-soft);
}
.marketing-app .action-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.marketing-app .action-card-heading .badge {
  font-size: 11px;
}
.marketing-app .action-card-heading > span:last-child {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--muted);
}
.marketing-app .action-card-heading .icon {
  height: 13px;
  width: 13px;
}
.marketing-app .action-visual h4 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.6px;
  margin: 17px 0 0;
}
.marketing-app .action-visual > p {
  font-size: var(--text-xs);
  margin-top: 9px;
  color: var(--muted);
}
.marketing-app .action-checks {
  display: grid;
  gap: 0;
  margin-top: 17px;
}
.marketing-app .action-checks .choice {
  font-size: var(--text-xs);
  min-height: 39px;
}
.marketing-app .action-checks input {
  width: 17px;
  height: 17px;
}
.marketing-app .brief-progress {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 15px;
  margin-top: 8px;
}
.marketing-app .brief-progress > span {
  font-size: 11px;
  color: var(--muted);
}
.marketing-app .brief-progress > div {
  width: 90px;
  height: 5px;
  background: var(--subtle);
  border-radius: 9px;
  overflow: hidden;
}
.marketing-app .brief-progress > div > span {
  height: 100%;
  display: block;
  background: var(--accent-text);
  transition: width var(--motion-data) var(--ease-out);
}
.marketing-app .shortlist-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 24px 24px;
  padding: 22px 0;
  min-height: 352px;
  background: radial-gradient(ellipse, var(--sky-1), transparent 74%);
}
.marketing-app .shortlist-question {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  font-size: var(--text-sm);
}
.marketing-app .shortlist-question .icon {
  color: var(--accent-text);
  width: 17px;
}
.marketing-app .shortlist-brands {
  display: flex;
  gap: 18px;
  align-items: center;
  position: relative;
  margin-top: 49px;
}
.marketing-app .shortlist-brands:before {
  content: "";
  position: absolute;
  width: 80%;
  height: 50px;
  border: 1px dashed var(--sky-3);
  border-bottom: 0;
  left: 10%;
  top: -25px;
  z-index: 0;
}
.marketing-app .shortlist-brands > span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--marketing-shadow);
  z-index: 1;
}
.marketing-app .shortlist-brands img {
  width: 28px;
  height: 28px;
}
.marketing-app .shortlist-brands > span.your-brand {
  background: var(--sky-2);
  transform: translateY(-7px);
  outline: 5px solid var(--sky-1);
  border-color: var(--sky-3);
}
.marketing-app .your-brand-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  color: var(--accent-text);
  margin-top: 20px;
}
.marketing-app .your-brand-caption .icon {
  transform: rotate(-55deg);
  height: 16px;
  width: 16px;
}
.marketing-app .shortlist-visual .visual-footnote {
  margin-top: 28px;
  text-align: center;
}
.marketing-app .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.marketing-app.motion-ready .steps-grid > article {
  opacity: 0;
  transform: translateY(18px);
}
.marketing-app.motion-ready .steps-grid > article.step-revealed {
  animation: step-reveal 650ms var(--ease-out) forwards;
}
.marketing-app.motion-ready .steps-grid > article:nth-child(2).step-revealed { animation-delay: 100ms; }
.marketing-app.motion-ready .steps-grid > article:nth-child(3).step-revealed { animation-delay: 200ms; }
.marketing-app .steps-grid > article:hover .step-visual {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.marketing-app .step-visual { transition: transform var(--motion-medium), box-shadow var(--motion-medium); }
.marketing-app .domain-visual > span { animation: domain-pulse 3s ease-in-out infinite; }
.marketing-app .prompt-visual > span { animation: prompt-float 3.5s ease-in-out infinite alternate; }
.marketing-app .prompt-visual > span:last-child { animation-delay: -1.2s; }
.marketing-app .insight-visual > span { animation: insight-glow 2.8s ease-in-out infinite; }
@keyframes step-reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes domain-pulse { 50% { transform: translateY(-4px); box-shadow: 0 8px 20px #2563eb1f; } }
@keyframes prompt-float { to { translate: 0 -5px; } }
@keyframes insight-glow { 50% { box-shadow: 0 8px 24px #2563eb25; } }
.marketing-app .step-visual {
  height: 155px;
  background: var(--background-subtle);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.marketing-app .step-visual > span {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  border-radius: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: var(--text-sm);
  padding: 12px 16px;
}
.marketing-app .step-visual .icon {
  height: 17px;
  width: 17px;
  color: var(--accent-text);
}
.marketing-app .domain-visual > span > .icon:last-child {
  color: var(--success-text);
}
.marketing-app .prompt-visual > span {
  padding: 8px 14px;
  transform: translateX(-14px);
  font-size: var(--text-xs);
}
.marketing-app .prompt-visual > span:last-child {
  transform: translateX(22px);
}
.marketing-app .insight-visual {
  background: var(--sky-1);
}
.marketing-app .insight-visual > span {
  font-size: var(--text-xs);
}
.marketing-app .step-number {
  display: block;
  font-size: var(--text-xs);
  color: var(--accent-text);
  margin: 23px 0 9px;
}
.marketing-app .steps-grid h3 {
  font-size: 19px;
  letter-spacing: -0.5px;
}
.marketing-app .steps-grid p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.8;
  margin-top: 10px;
  max-width: 310px;
}
.marketing-app .early-access-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(125deg, #faf9ff, var(--sky-1));
  padding: 75px 30px 65px;
  text-align: center;
  border: 0;
  border-radius: 0;
}
.marketing-app .early-access-section {
  background: linear-gradient(125deg, #faf9ff, var(--sky-1));
  padding-bottom: 24px;
}
.marketing-app .early-access-card.wrap {
  width: 100%;
  max-width: none;
}
.marketing-app .early-access-card h2 {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  letter-spacing: -0.06em;
}
.marketing-app .early-access-card > p {
  color: var(--muted);
  font-size: var(--text-base);
  margin-top: 20px;
}
.marketing-app .early-decoration {
  position: absolute;
  inset: 0;
  z-index: -1;
  mask-image: linear-gradient(
    90deg,
    #000,
    transparent 40%,
    transparent 60%,
    #000
  );
}
.marketing-app .early-decoration span {
  position: absolute;
  width: 850px;
  height: 850px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--sky-2);
  border-radius: 50%;
}
.marketing-app .early-decoration span:nth-child(2) {
  width: 1050px;
  height: 1050px;
  top: 0;
}
.marketing-app .early-decoration span:nth-child(3) {
  width: 1260px;
  height: 1260px;
  top: -70px;
}
.marketing-app .offer-notes {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.marketing-app .offer-notes > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
}
.marketing-app .offer-notes .icon {
  width: 13px;
  height: 13px;
  color: var(--accent-text);
}
.marketing-app .faq-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  padding-bottom: 100px;
}
.marketing-app .faq-section > div > p {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--muted);
  margin-top: 22px;
}
.marketing-app .faq-list details {
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 0;
  border-radius: 0;
  background: none;
}
.marketing-app .faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 20px 0;
  font-size: var(--text-base);
  font-weight: 400;
  cursor: pointer;
  list-style: none;
}
.marketing-app summary::-webkit-details-marker {
  display: none;
}
.marketing-app .faq-list summary .icon {
  width: 17px;
  height: 17px;
  color: var(--muted);
  transition: transform var(--motion-medium);
}
.marketing-app .faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.marketing-app .faq-list details > p {
  margin: 0;
  padding: 0 24px 24px 0;
  font-size: var(--text-sm);
  line-height: 1.85;
  color: var(--muted);
}
.marketing-app .marketing-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  padding-bottom: 28px;
  gap: 40px;
  background: linear-gradient(125deg, #faf9ff, var(--sky-1));
}
.marketing-app .marketing-footer.wrap {
  width: 100%;
  max-width: none;
  padding-inline: max(32px, calc((100% - var(--marketing-width)) / 2));
}
.marketing-app .marketing-footer p {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 12px;
}
.marketing-app .footer-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  align-items: flex-start;
}
.marketing-app .footer-links a {
  font-size: var(--text-xs);
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
}
.marketing-app .footer-links .icon {
  height: 13px;
  width: 13px;
}
.marketing-app .footer-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  padding-top: 12px;
}
/* The existing private waitlist funnel uses the same readable Orbit theme. */
.marketing-app #join-dialog {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--marketing-shadow);
  color: var(--text);
}
.marketing-app #join-dialog::backdrop {
  background: var(--overlay-backdrop);
  backdrop-filter: blur(5px);
}
.marketing-app #join-dialog .dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
}
.marketing-app #join-dialog h2 {
  font-size: 38px;
  letter-spacing: -1.5px;
  margin-top: 18px;
}
.marketing-app #join-dialog > p {
  font-size: var(--text-sm);
  color: var(--muted);
}
.marketing-app #join-dialog label,
.marketing-app #join-dialog legend {
  font-size: var(--text-sm);
  display: block;
  margin-top: 18px;
}
.marketing-app #join-dialog input:not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
  border: 1px solid var(--border-control);
  border-radius: 10px;
  padding: 12px;
  font-size: 16px;
  min-height: 48px;
  background: var(--surface);
  margin-top: 7px;
}
.marketing-app #join-dialog .consent-label {
  display: flex;
  font-size: var(--text-xs);
}
.marketing-app #join-dialog .consent-label input {
  width: 19px;
  height: 19px;
  flex-basis: 19px;
  border-color: var(--border-control);
}
.marketing-app #join-dialog .consent-label input:checked:after {
  margin: 5px 4px;
}
.marketing-app #join-dialog .button.large {
  width: 100%;
  margin-top: 20px;
}
.marketing-app #join-dialog .form-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}
.marketing-app #join-dialog .waitlist-choices label > span {
  min-height: 44px;
  font-size: var(--text-xs);
}
.marketing-app #join-dialog .waitlist-choices label {
  margin-top: 0;
}
.marketing-app #join-dialog .waitlist-privacy summary {
  font-size: var(--text-xs);
  min-height: 44px;
}
.marketing-app #join-dialog .waitlist-privacy p,
.marketing-app #join-dialog .waitlist-next p,
.marketing-app #join-dialog .waitlist-management > p {
  font-size: var(--text-xs);
}
.marketing-app #join-dialog .waitlist-skip,
.marketing-app #join-dialog #skip-profile {
  font-size: var(--text-xs);
  min-height: 44px;
}
.marketing-app #join-dialog .waitlist-share strong {
  font-size: var(--text-sm);
}
.marketing-app #join-dialog .waitlist-share p {
  font-size: var(--text-xs);
}
.marketing-app #join-dialog .waitlist-share > .button {
  font-size: var(--text-xs);
  min-height: 44px;
}
.marketing-app #join-dialog .waitlist-management > .text-link {
  font-size: var(--text-xs);
}
.marketing-app #join-dialog .waitlist-saved {
  font-size: var(--text-xs);
}
@keyframes levitate {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -9px;
  }
}
@media (min-width: 1500px) {
  .marketing-app .discovery-scene {
    margin-top: 10px;
  }
}
@media (max-width: 1000px) {
  .marketing-app .header-content nav {
    gap: 18px;
    margin-right: 0;
  }
  .marketing-app .header-actions {
    gap: 18px;
  }
  .marketing-app .demo-link {
    display: none;
  }
  .marketing-app .question-float {
    left: 0;
    width: 280px;
  }
  .marketing-app .answer-float {
    width: 280px;
  }
  .marketing-app .signal-float {
    left: 40px;
  }
  .marketing-app .node-claude {
    right: 100px;
  }
  .marketing-app .feature-copy {
    padding: 28px 28px 0;
  }
  .marketing-app .engine-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .marketing-app .visibility-main {
    padding-inline: 23px;
  }
  .marketing-app .competitor-panel {
    padding-inline: 22px;
  }
  .marketing-app .footer-links {
    gap: 16px;
  }
  .marketing-app .funnel-stats {
    gap: 30px;
  }
}
@media (max-width: 760px) {
  :root {
    --section-space: 88px;
  }
  .marketing-app .wrap {
    width: calc(100% - 40px);
  }
  .marketing-app .marketing-header {
    height: 76px;
  }
  .marketing-app .header-content {
    gap: 10px;
  }
  .marketing-app .header-content nav {
    display: none;
  }
  .marketing-app .wordmark img {
    width: 168px;
  }
  .marketing-app .header-actions .button {
    font-size: var(--text-xs);
    padding: 10px 13px;
    gap: 6px;
  }
  .marketing-app .header-actions .button .icon {
    width: 14px;
  }
  .marketing-app .hero {
    padding-top: 48px;
  }
  .marketing-app .hero h1 {
    font-size: clamp(3.05rem, 10.5vw, 4.75rem);
  }
  .marketing-app .hero-copy {
    font-size: 18px;
    margin-top: 23px;
  }
  .marketing-app .hero-detail {
    font-size: var(--text-sm);
  }
  .marketing-app .hero-note {
    font-size: 11px;
  }
  .marketing-app .hero .announcement {
    font-size: 11px;
    gap: 7px;
    margin-bottom: 26px;
  }
  .marketing-app .announcement-label {
    display: none;
  }
  .marketing-app .hero-actions .button {
    padding: 12px 15px;
    font-size: var(--text-xs);
  }
  .marketing-app .hero-actions {
    gap: 8px;
  }
  .marketing-app .hero-actions .icon {
    width: 16px;
    height: 16px;
  }
  .marketing-app .discovery-scene {
    height: 470px;
    margin-top: 10px;
  }
  .marketing-app .globe-wrap {
    width: 450px;
    height: 450px;
    top: 15px;
  }
  .marketing-app .scene-orbit {
    width: 650px;
    top: 120px;
  }
  .marketing-app .orbit-two {
    width: 700px;
  }
  .marketing-app .question-float {
    top: 58px;
    left: 0;
    width: 227px;
    padding: 15px;
    border-radius: 14px;
  }
  .marketing-app .floating-card p {
    font-size: var(--text-sm);
  }
  .marketing-app .card-label {
    font-size: 11px;
    gap: 7px;
    margin-bottom: 10px;
  }
  .marketing-app .card-label img {
    width: 18px;
    height: 18px;
  }
  .marketing-app .question-tags {
    margin-top: 10px;
  }
  .marketing-app .question-tags span {
    font-size: 10px;
  }
  .marketing-app .answer-float {
    top: 246px;
    right: 0;
    width: 235px;
    padding: 15px;
    border-radius: 14px;
  }
  .marketing-app .citation-pill {
    font-size: 10px;
    margin-top: 12px;
  }
  .marketing-app .signal-float {
    display: none;
  }
  .marketing-app .provider-node {
    height: 45px;
    width: 45px;
    border-radius: 13px;
  }
  .marketing-app .provider-node img {
    width: 24px;
    height: 24px;
  }
  .marketing-app .node-claude {
    right: 18px;
    top: 44px;
  }
  .marketing-app .node-gemini {
    left: 15px;
    bottom: 65px;
    right: auto;
  }
  .marketing-app .scene-footer {
    gap: 16px;
    font-size: 10px;
    bottom: 0;
  }
  .marketing-app .motion-toggle {
    font-size: 10px;
  }
  .marketing-app .provider-strip { padding: 28px 0 0; }
  .marketing-app .provider-group { gap: 34px; padding-right: 34px; }
  .marketing-app .provider-group > span { gap: 7px; }
  .marketing-app .provider-strip strong {
    font-size: 13px;
  }
  .marketing-app .provider-strip img {
    width: 24px;
    height: 24px;
  }
  .marketing-app .section-heading {
    margin-bottom: 30px;
  }
  .marketing-app .section-heading > p {
    font-size: var(--text-sm);
  }
  .marketing-app .eyebrow {
    font-size: 11px;
  }
  .marketing-app .story-nav {
    width: 100%;
    padding: 4px;
    gap: 0;
    margin-bottom: 20px;
  }
  .marketing-app .story-nav button {
    padding: 10px 9px;
    gap: 5px;
    font-size: 11px;
    flex: 1;
    justify-content: center;
    min-height: 44px;
    white-space: nowrap;
  }
  .marketing-app .story-nav .icon {
    width: 15px;
    height: 15px;
  }
  .marketing-app .stage-toolbar {
    padding: 17px 18px;
    align-items: flex-start;
  }
  .marketing-app .stage-toolbar .badge {
    font-size: 10px;
  }
  .marketing-app .sample-company {
    gap: 9px;
  }
  .marketing-app .sample-company div > span {
    font-size: 10px;
    max-width: 140px;
  }
  .marketing-app .sample-company .acme-mark {
    width: 30px;
    height: 30px;
    font-size: 21px;
  }
  .marketing-app .engine-controls {
    padding: 14px 16px;
  }
  .marketing-app .engine-controls .segmented {
    width: 100%;
    justify-content: flex-start;
    padding: 3px;
    gap: 2px;
  }
  .marketing-app .engine-controls .segmented > button {
    flex: 0 0 44px;
    padding: 7px 8px;
    min-height: 44px;
    justify-content: center;
    gap: 0;
  }
  .marketing-app .engine-controls .segmented > button:first-child {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 11px;
  }
  .marketing-app .engine-name {
    display: none;
  }
  .marketing-app .visibility-panel,
  .marketing-app .questions-panel {
    grid-template-columns: 1fr;
  }
  .marketing-app .visibility-main {
    padding: 23px 20px;
  }
  .marketing-app .visibility-metric strong {
    font-size: 42px;
  }
  .marketing-app .visibility-metric p {
    font-size: 11px;
  }
  .marketing-app .visibility-chart {
    height: 165px;
  }
  .marketing-app .competitor-panel {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 23px 20px;
  }
  .marketing-app .stage-bottom {
    padding: 12px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .marketing-app .stage-bottom p {
    font-size: 11px;
  }
  .marketing-app .questions-panel > div {
    padding: 23px 17px;
  }
  .marketing-app .sample-answer {
    margin: 0 17px 23px;
  }
  .marketing-app .opportunities-panel {
    grid-template-columns: 1fr;
    padding: 23px 17px;
    gap: 20px;
  }
  .marketing-app .opportunity-intro h3 br {
    display: none;
  }
  .marketing-app .opportunity-intro h3 {
    font-size: 22px;
  }
  .marketing-app .value-trio {
    grid-template-columns: 1fr;
    gap: 19px;
    padding-top: 26px;
  }
  .marketing-app .value-trio p br {
    display: none;
  }
  .marketing-app .value-trio strong {
    margin-right: 5px;
  }
  .marketing-app .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .marketing-app .feature-copy {
    padding: 26px 24px 0;
  }
  .marketing-app .feature-copy h3 {
    font-size: 28px;
  }
  .marketing-app .feature-copy p {
    font-size: var(--text-sm);
  }
  .marketing-app .source-visual,
  .marketing-app .funnel-visual,
  .marketing-app .action-visual {
    margin: 25px 16px 16px;
    padding: 20px;
  }
  .marketing-app .shortlist-visual {
    min-height: 300px;
    margin: 20px 16px 16px;
  }
  .marketing-app .shortlist-brands {
    gap: 13px;
  }
  .marketing-app .shortlist-brands > span {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }
  .marketing-app .shortlist-question {
    font-size: var(--text-xs);
    gap: 7px;
  }
  .marketing-app .action-checks .choice {
    min-height: 44px;
    font-size: 11px;
  }
  .marketing-app .source-row {
    font-size: var(--text-xs);
  }
  .marketing-app .steps-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .marketing-app .steps-grid p {
    max-width: 100%;
  }
  .marketing-app .step-visual {
    height: 145px;
  }
  .marketing-app .step-number {
    margin-top: 18px;
  }
  .marketing-app .early-access-card {
    padding: 49px 20px 40px;
  }
  .marketing-app .early-access-card > p {
    font-size: var(--text-sm);
  }
  .marketing-app .offer-notes {
    gap: 9px 16px;
    margin-top: 23px;
  }
  .marketing-app .offer-notes > span {
    font-size: 10px;
  }
  .marketing-app .faq-section {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 70px;
  }
  .marketing-app .faq-section > div > p br {
    display: none;
  }
  .marketing-app .faq-list summary {
    font-size: var(--text-sm);
    min-height: 70px;
    gap: 18px;
  }
  .marketing-app .faq-list details > p {
    font-size: var(--text-sm);
    padding-right: 0;
  }
  .marketing-app .marketing-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .marketing-app .marketing-footer.wrap { padding-inline: 20px; }
  .marketing-app .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }
  .marketing-app .footer-bottom {
    padding-top: 0;
    gap: 15px;
    font-size: 10px;
  }
  .marketing-app #join-dialog {
    padding: 30px 23px;
  }
  .marketing-app #join-dialog h2 {
    font-size: 34px;
  }
  .marketing-app .desktop-break {
    display: none;
  }
}
@media (max-width: 380px) {
  .marketing-app .wrap {
    width: calc(100% - 28px);
  }
  .marketing-app .wordmark img {
    width: 148px;
    height: auto;
  }
  .marketing-app .hero h1 {
    font-size: 2.85rem;
  }
  .marketing-app .header-actions .button .icon {
    display: none;
  }
  .marketing-app .shortlist-brands {
    gap: 10px;
  }
  .marketing-app .shortlist-brands > span {
    width: 52px;
    height: 52px;
  }
  .marketing-app .story-nav button {
    padding-inline: 7px;
    font-size: 10px;
  }
  .marketing-app .hero-actions .button {
    padding-inline: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .marketing-app .floating-card,
  .marketing-app .provider-node {
    animation: none;
    will-change: auto;
  }
  .marketing-app .motion-toggle {
    display: none;
  }
  .marketing-app .button:hover {
    transform: none;
  }
}
@media (forced-colors: active) {
  .marketing-app .competitor-row:before {
    border: 1px solid CanvasText;
  }
  .marketing-app .funnel-bar {
    border: 1px solid CanvasText;
  }
  .marketing-app .plot-current,
  .marketing-app .plot-previous {
    stroke: CanvasText;
  }
  .marketing-app .css-globe {
    border-color: CanvasText;
  }
}
.marketing-app .visibility-chart {
  height: 208px;
}
.marketing-app .visibility-chart svg {
  height: 155px;
}
.marketing-app .delta.negative {
  background: var(--amber-1);
  color: var(--warning-text);
}
.marketing-app .story-nav.has-indicator button.active {
  background: transparent;
  box-shadow: none;
}
.marketing-app .story-nav .selection-indicator {
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
/* Marketing headings are vertical editorial blocks; Orbit's gallery toolbar is horizontal. */
.marketing-app .section-heading {
  display: block;
  align-items: initial;
  justify-content: initial;
  gap: 0;
}
.marketing-app .section-heading .eyebrow {
  display: inline-block;
}
.marketing-app .story-nav button.active {
  border-bottom: 0;
}
.marketing-app .story-nav .selection-indicator {
  border: 0;
}
.marketing-app .hero .announcement {
  margin-top: 0;
}
.marketing-app > main {
  padding: 0;
  margin: 0;
  max-width: none;
}
.marketing-app .section-heading > span {
  display: inline-block;
}
.marketing-app mark,
.marketing-app .funnel-bar:nth-child(2) {
  color: var(--text);
}
.marketing-app .discovery-scene:not(.scene-visible) .floating-card,
.marketing-app .discovery-scene:not(.scene-visible) .provider-node {
  animation-play-state: paused;
}
.marketing-app .scene-visible .css-globe span {
  animation: globe-latitude 18s linear infinite;
}
.marketing-app .scene-visible .css-globe span:nth-child(2) {
  animation-delay: -6s;
}
.marketing-app .scene-visible .css-globe span:nth-child(3) {
  animation-delay: -12s;
}
@keyframes globe-latitude {
  from {
    transform: rotate(20deg) rotateY(0deg);
  }
  to {
    transform: rotate(20deg) rotateY(180deg);
  }
}
.marketing-app .marketing-funnel-step > div:first-child {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}
.marketing-app .marketing-funnel-track {
  height: 14px;
  border-radius: 4px;
  background: var(--subtle);
  overflow: hidden;
}
.marketing-app .marketing-funnel-track > span {
  display: block;
  height: 100%;
  background: var(--sky-2);
  border-radius: 4px;
}
.marketing-app
  .marketing-funnel-step:nth-child(2)
  .marketing-funnel-track
  > span {
  background: var(--accent);
}
.marketing-app
  .marketing-funnel-step:last-child
  .marketing-funnel-track
  > span {
  background: var(--accent-text);
}

/* Landing refinements: Orbit tokens, purposeful disclosure, finite motion. */
@font-face { font-family:'Space Grotesk'; src:url('/assets/SpaceGrotesk-Variable.woff2') format('woff2'); font-style:normal; font-weight:300 700; font-display:swap; }
.marketing-app .hero h1 { font-family:'Space Grotesk',var(--font-sans); font-weight:500; letter-spacing:-.055em; }
/* Every landing title uses the hero's display face. Body copy keeps --font-sans. */
.marketing-app :is(h1,h2,h3,h4,h5,h6),
.marketing-app :is(.value-trio,.visibility-metric,.funnel-stats) strong,
.marketing-app .scene-detail-heading,
.marketing-app .panel-title h3 { font-family:'Space Grotesk',var(--font-sans); }
.marketing-app #approach { padding-top:80px; }
.marketing-app #approach .section-heading { margin-bottom:32px; }
.marketing-app #early-access { padding-top:72px; }
.marketing-app .value-trio { gap:32px; padding-top:48px; }
.marketing-app .value-trio > div { flex-direction:column; gap:18px; }
.marketing-app .value-trio .icon { width:38px; height:38px; margin:0; stroke-width:1.5; }
.marketing-app .value-trio strong { display:block; font-size:20px; line-height:1.3; margin-bottom:10px; }
.marketing-app .value-trio p { margin:0; font-size:15px; line-height:1.65; }
.marketing-app .value-trio br { display:none; }
.marketing-app #insights .feature-card { border-radius:var(--radius-card); background:var(--subtle); }
.marketing-app #insights .feature-copy { padding:var(--space-6) var(--space-6) 0; }
.marketing-app #insights .feature-label { font-size:var(--text-xs); letter-spacing:0; color:var(--muted); }
.marketing-app #insights .source-visual,.marketing-app #insights .funnel-visual { border-radius:var(--radius-6); box-shadow:var(--shadow-card); }
.marketing-app .engine-controls { justify-content:flex-start; flex-wrap:wrap; }
.marketing-app .engine-controls > span { margin-right:auto; }
.marketing-app .engine-controls .segmented { overflow:visible; max-width:100%; }
.marketing-app .engine-more { position:relative; flex-shrink:0; }
.marketing-app .engine-more .dropdown-panel { z-index:20; right:0; left:auto; min-width:190px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-6); box-shadow:var(--shadow-card-hover); padding:6px; }
.marketing-app .engine-more .dropdown-panel button { display:flex; width:100%; gap:10px; align-items:center; text-align:left; border:0; background:transparent; border-radius:var(--radius-4); }
.marketing-app .engine-more .dropdown-panel button:hover,.marketing-app .engine-more .dropdown-panel button.active { background:var(--subtle); }
.marketing-app .product-stage { overflow:visible; }
.marketing-app .scene-cards { pointer-events:none; }
.marketing-app .scene-cards button { pointer-events:auto; color:var(--text); text-align:left; font-family:inherit; }
.marketing-app .globe-explore { position:absolute; inset:12%; border:0; border-radius:50%; background:transparent; cursor:pointer; }
.marketing-app .globe-pin {
  position:absolute;
  left:0;
  top:0;
  display:block;
  width:24px;
  height:24px;
  padding:0;
  border:4px solid var(--surface);
  border-radius:50%;
  appearance:none;
  -webkit-appearance:none;
  background:#2f62d6;
  box-shadow:0 0 0 1px var(--border);
  z-index:4;
  opacity:1;
  transition:background-color 160ms ease,box-shadow 160ms ease,opacity 120ms ease;
}
.marketing-app .globe-pin::before { content:''; position:absolute; inset:-10px; }
.marketing-app .globe-pin > * { display:none !important; }
.marketing-app .globe-pin[aria-pressed="true"] {
  background:#1aa66a;
  box-shadow:0 0 0 5px #dff6ea,0 0 0 6px #9bd8b7;
}
.marketing-app .globe-pin:focus-visible,.marketing-app .globe-explore:focus-visible,.marketing-app .floating-card:focus-visible { outline:2px solid var(--focus-color); outline-offset:4px; }
.marketing-app .question-float,.marketing-app .answer-float { animation:none; transform:none; }
.marketing-app .floating-card:hover { border-color:var(--gray-3); }
.marketing-app .scene-detail { width:min(580px,calc(100% - 32px)); max-height:85vh; padding:28px; border:1px solid var(--border); border-radius:var(--radius-card); color:var(--text); background:var(--surface); margin:auto; }
.marketing-app .scene-detail::backdrop { background:#18192555; }
.marketing-app .scene-detail-heading { display:flex; justify-content:space-between; align-items:center; gap:16px; color:var(--muted); font-size:13px; }
.marketing-app .scene-detail h2 { font-size:26px; line-height:1.3; margin:24px 0; }
.marketing-app .scene-detail h3 { font-size:15px; margin:24px 0 8px; }
.marketing-app .scene-detail p { font-size:14px; line-height:1.7; margin:0 0 20px; }
.marketing-app .scene-answer { padding:20px; background:var(--subtle); border-radius:var(--radius-6); }
.marketing-app .scene-answer > span { display:block; color:var(--muted); font-size:12px; margin-bottom:12px; }
.marketing-app .scene-answer p { margin:0; }
.marketing-app .steps-grid .step-visual { position:relative; width:100%; color:var(--text); font-family:inherit; height:150px; }
.marketing-app .steps-grid .step-visual:focus-visible { outline:2px solid var(--focus-color); outline-offset:4px; }
.marketing-app .steps-grid .step-visual[aria-pressed="true"] { border-color:var(--accent-text); }
.marketing-app .steps-grid .step-visual[aria-pressed="true"]::after { content:''; position:absolute; height:2px; background:var(--accent-text); left:0; bottom:0; width:100%; transform-origin:left; animation:workflow-scan 850ms var(--ease-out) both; }
@keyframes workflow-scan { from { transform:scaleX(0); } to { transform:scaleX(1); } }
.marketing-app .steps-grid .step-visual > span { animation:none; }
.marketing-app .steps-grid article.step-revealed .step-visual > span { animation:step-reveal 700ms var(--ease-out) both; }
.marketing-app .workflow-preview { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:24px; margin-top:24px; background:var(--subtle); border:1px solid var(--border); border-radius:var(--radius-6); }
.marketing-app .workflow-preview[hidden] { display:none; }
.marketing-app .workflow-preview strong { font-size:16px; font-weight:500; }
.marketing-app .workflow-preview p { font-size:14px; color:var(--muted); margin:6px 0 0; }
.marketing-app.motion-paused .discovery-scene *, .marketing-app .provider-track { animation-play-state:paused; }
.marketing-app.reduce-motion *, .marketing-app.reduce-motion *::after { animation:none !important; transition:opacity 150ms !important; }
@media(max-width:650px) {
 .marketing-app .engine-controls { padding:16px; gap:8px; }
 .marketing-app .engine-controls > span { flex-basis:100%; }
 .marketing-app .engine-controls .segmented { display:flex; flex-wrap:wrap; gap:2px; flex:1; }
 .marketing-app .engine-controls .segmented > button { flex:initial; }
 .marketing-app .engine-controls .segmented > button:first-child { flex:initial; }
 .marketing-app .value-trio { grid-template-columns:1fr; gap:32px; }
 .marketing-app .value-trio > div { gap:12px; }
 .marketing-app .value-trio .icon { width:36px; height:36px; }
 .marketing-app #approach { padding-top:56px; }
 .marketing-app #early-access { padding-top:48px; }
 .marketing-app .workflow-preview { align-items:flex-start; flex-direction:column; }
 .marketing-app .globe-pin span { font-size:10px; }
}
@media(prefers-reduced-motion:reduce) {
 .marketing-app .discovery-scene *, .marketing-app .step-visual *, .marketing-app .step-visual::after { animation:none !important; }
 .marketing-app .steps-grid > article { opacity:1 !important; transform:none !important; }
}
.marketing-app .engine-controls { flex-direction:row; align-items:center; }
.marketing-app .engine-controls > span { flex-basis:100%; }

.marketing-app.motion-ready .steps-grid > article { opacity:1; transform:none; }
.marketing-app.reduce-motion .steps-grid > article { opacity:1 !important; transform:none !important; }
.marketing-app .engine-more .engine-name { display:inline; }
@media(max-width:650px) {
 .marketing-app .globe-pin { top:3%; }
    .marketing-app .globe-pin span { top:-23px; }
}
@media(max-width:450px) { .marketing-app .hero h1 { font-size:clamp(36px,10.5vw,46px); letter-spacing:-.045em; } }

/* One recognizable set of platforms, without a repeating marquee. */
.marketing-app .provider-marquee { mask-image:none; overflow:visible; }
.marketing-app .provider-track { width:100%; animation:none; justify-content:center; }
.marketing-app .provider-group { padding:0 24px; gap:40px; flex-wrap:wrap; justify-content:center; }
.marketing-app #approach { padding-top:96px; padding-bottom:96px; }
.marketing-app #approach .section-heading { margin-bottom:52px; }
.marketing-app .steps-grid { gap:32px; }
.marketing-app .steps-grid .step-visual { height:240px; padding:28px; margin-bottom:28px; overflow:hidden; background:#f3f5f9; }
.marketing-app .steps-grid .step-visual > span { display:flex; flex-direction:column; align-items:stretch; width:100%; padding:0; gap:0; text-align:left; transform:none; background:var(--surface); border:1px solid var(--border); border-radius:12px; box-shadow:0 12px 28px #182c5010; }
.workflow-address,.workflow-result { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:14px; font-size:12px; }
.workflow-address { border-bottom:1px solid var(--border); }
.workflow-result { color:var(--muted); }
.workflow-result b,.workflow-address b { font-size:11px; font-weight:500; color:var(--accent-text); }
.workflow-lines { display:grid; gap:8px; padding:18px 14px; }
.workflow-lines i { display:block; height:6px; background:#dbe5f8; border-radius:4px; transform-origin:left; }
.workflow-lines i:nth-child(2) { width:76%; }
.workflow-lines i:nth-child(3) { width:52%; }
.marketing-app .steps-grid .step-visual > .workflow-questions { background:transparent; box-shadow:none; border:0; gap:12px; }
.workflow-questions > span { display:flex; flex-direction:column; gap:8px; padding:13px 14px; background:var(--surface); border:1px solid var(--border); border-radius:10px; font-size:12px; }
.workflow-questions b { font-weight:400; font-size:10px; color:var(--muted); }
.workflow-questions > span:nth-child(2) { margin-left:16px; }
.workflow-opportunity > strong { padding:8px 14px 0; font-size:21px; font-weight:500; letter-spacing:-.5px; }
.marketing-app .closing-footer { position:relative; isolation:isolate; overflow:hidden; background:linear-gradient(125deg,#faf9ff,#eaf1ff); }
.marketing-app .closing-footer .early-access-section,.marketing-app .closing-footer .early-access-card { background:transparent; }
.marketing-app .closing-footer .marketing-footer { background:transparent; margin-top:0; }
.marketing-app .closing-footer::before { content:''; position:absolute; inset:-15%; z-index:-1; pointer-events:none; background:radial-gradient(ellipse at 25% 40%,#d4c9ff65,transparent 50%),radial-gradient(ellipse at 75% 65%,#bce8ff70,transparent 50%); }
@media(prefers-reduced-motion:no-preference) {
 .marketing-app .steps-grid .workflow-lines i { animation:workflow-line 3.5s ease-in-out infinite alternate; }
 .marketing-app .steps-grid .workflow-lines i:nth-child(2) { animation-delay:.3s; }
 .marketing-app .steps-grid .workflow-lines i:nth-child(3) { animation-delay:.6s; }
 .marketing-app .workflow-questions > span { animation:workflow-question 5s ease-in-out infinite; }
 .marketing-app .workflow-questions > span:nth-child(2) { animation-delay:.7s; }
 .marketing-app .workflow-questions > span:nth-child(3) { animation-delay:1.4s; }
 .marketing-app .closing-footer::before { animation:closing-drift 16s ease-in-out infinite alternate; }
 .marketing-app .closing-footer .early-decoration { animation:closing-rings 12s ease-in-out infinite alternate; }
}
@keyframes workflow-line { from { transform:scaleX(.65); opacity:.5; } to { transform:scaleX(1); opacity:1; } }
@keyframes workflow-question { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-4px); } }
@keyframes closing-drift { from { transform:translate(-3%,-2%); } to { transform:translate(3%,2%); } }
@keyframes closing-rings { from { transform:scale(.95); opacity:.45; } to { transform:scale(1.05); opacity:.85; } }
@media(max-width:700px) { .marketing-app .provider-group { gap:24px; } .marketing-app #approach { padding-block:64px; } .marketing-app .steps-grid { gap:40px; } }

/* Closing CTA and footer are stacked, independent of shared footer defaults. */
.marketing-app footer.closing-footer { display:block; width:100%; max-width:none; margin:0; padding:0; border:0; color:var(--text); }
.marketing-app .closing-footer #early-access { display:block; width:100%; padding:40px 0 0; margin:0; }
.marketing-app .closing-footer .early-access-card { display:block; width:100%; padding:80px 24px 88px; }
.marketing-app .closing-footer .early-access-card h2 { max-width:800px; margin:24px auto 0; color:var(--text); }
.marketing-app .closing-footer .early-access-card > p { max-width:620px; margin:24px auto 0; }
.marketing-app .closing-footer .early-decoration { transform-origin:50% 70%; }
.marketing-app .closing-footer .marketing-footer { width:100%; margin:0; }
.marketing-app .closing-footer .early-decoration span { border-color:#9db7ed; }
.marketing-app .value-trio { margin-top:24px; padding:32px; }
/* Each country has a distinct origin and message arrangement. */
.marketing-app .globe-wrap { mask-image:none; }
.marketing-app .globe-pin span { pointer-events:none; }
.marketing-app .discovery-scene .question-float { transform:none; }
.marketing-app .discovery-scene[data-location="1"] .question-float { left:9%; top:65px; }
.marketing-app .discovery-scene[data-location="1"] .answer-float { top:245px; right:1%; }
.marketing-app .discovery-scene[data-location="2"] .question-float { left:auto; right:0; top:90px; }
.marketing-app .discovery-scene[data-location="2"] .answer-float { right:auto; left:0; top:220px; }
.marketing-app .discovery-scene .signal-float { animation:none; }
.marketing-app .css-globe::before { content:''; position:absolute; inset:0; width:200%; background:radial-gradient(circle,#34496e 1.15px,transparent 1.5px) 0 0 / 5px 5px; mask-repeat:repeat-x; mask-size:50% 100%; mask-mode:luminance; opacity:.75; }
.marketing-app .css-globe::after { content:''; position:absolute; inset:0; border-radius:inherit; box-shadow:inset -30px -5px 65px #426ad02b,inset 15px 4px 35px #ffffffa0; pointer-events:none; }
@media(prefers-reduced-motion:no-preference) {
 .marketing-app .css-globe::before { animation:world-drift 70s linear infinite; animation-play-state:paused; }
 .marketing-app .scene-visible .css-globe::before { animation-play-state:running; }
 .marketing-app .scene-visible .globe-pin[aria-pressed="true"]::after { content:''; position:absolute; inset:-7px; border:1px solid #6389ed; border-radius:50%; animation:country-pulse 2.5s ease-out infinite; pointer-events:none; }
}
@keyframes world-drift { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes country-pulse { from { transform:scale(.8); opacity:.7; } to { transform:scale(1.7); opacity:0; } }
@media(max-width:700px) {
 .marketing-app .value-trio { padding:24px; margin-top:16px; }
 .marketing-app .closing-footer .early-access-card { padding:48px 24px 56px; }
 .marketing-app .closing-footer .marketing-footer { display:flex; flex-direction:column; padding:32px 24px; gap:24px; }
 .marketing-app .closing-footer .footer-links { justify-content:flex-start; flex-wrap:wrap; }
 .marketing-app .closing-footer .footer-bottom { flex-wrap:wrap; gap:12px; }
 .marketing-app .discovery-scene[data-location] .question-float { left:0; right:auto; top:64px; }
 .marketing-app .discovery-scene[data-location] .answer-float { right:0; left:auto; top:254px; }
}
.marketing-app.reduce-motion .css-globe::before,.marketing-app.reduce-motion .globe-pin::after { animation:none !important; }

/* Cobe’s bundled land mask keeps the software-rendered fallback recognizable. */
.marketing-app .css-globe::before { mask-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAACAAQAAAADMzoqnAAAECklEQVR42u3VsW4jRRzH8d94gzfF4Q0VQaC4vBLTRTp0mze4ggfAPAE5XQEFsGNAVIjwBrmW7h7gJE+giKjyABTZE4g06LKJETdRJvtD65kdz6yduKABiW+TVfzRf2bXYxtcE/59YJCz6YdbgQF6ACSRrwYKYImmh5PbwOewlV3wlQNbAN6SEExjUOO+BU0aCSnxReHABUlK4YFQeJeUT3da8IIkZ6NGoSnFY5KsMoVzMKfECUnqxgPYRArarmUCndHwzIEaQEpg5xVdBXROl8mpAQx5dUgPiHoYAAkg5w3JABR06byGAVgcRGAz5bznj6phBQNRFwyqgdxebH6gshJAesWoFhgYpApAFoG8BIZ/fEhSox5jDjQXmV0Ar5XJfAIrALi3URVs09gHIL4XJCkLC5LH9JWiArABFCSrQjdgkBzRJ0WJeUOSNyQAfJJwUSWUBRlJQ8oGHATACGlBynnzy2kEYLNjrxouigD8BZcgOeVPqh12RtufaCN5wCPVDpvQ9lsIrqndsJtDcWqBCpf4hWN7OdWHBw58FwIaNOU/n1TpMW2DFaD48cmr4185T8NHkpUFX749pQPVdgRKC/DGoQPVeAEKv+WHvY8OOWNTPRp5kHuwSf8wzXtVBKR7YwEH9H3lQUaypUfSATOALyVNu5vZJW31Bnx98nkLfDUWJaz6ixvm+RIQRdl3kmRxxiaDoGnZW4CpPfkaQadlcPim1xOSvETQo7Lv75enVAXJ3xGUlony4KQBBWUM1NiDc6qhyS8RgQs18OCMMtPDaAUIyg0PZkRWDqs+wnKJBTDI1Js6BolegOsKmUxNDBAAKqQyMQmidhegBlLZ+wwKYdv5M/8x1khkb1cgKqP2H+MKyV5vS+whrE8DQDgAlUAoRBX056EElJCjJVACeJBZgNfVp+iCCm4RBWCgKsRxASSA9KgDhDtCiTuMyfHsKXzhC6wNAIjjWb8LKAOA2ctk3FmCOlgKFy8f1N0JJtgsxinYnVAHt4t3gPzZXSCTyCWCQmBT91QE3B5yarSN40dNHYPka4TlDhTUI8zLvl0JSL3vZn6DsCFZOeB2yROEpR68sECQQA++xIGCR2X7DwlEoLRgUrZrqlUg50S1uy43YqDcN6UFBVkhAjWiCV2Q0jgQPdplMKxvBXodcOfAwJYvgdL+1etA1YJJfBcZlQV7sO1i2gHoNiyxtQ5sBsCgWyoxCHiFFd2L5nUTCqMAqGUgsQ9f5kCcCiZgRYkMgMTd5WsB1rTzj0Em14BE4r+QxN1lCEsVur2PoF5Wbg8RJXR4djgvBgauhLywoEZQrt1KKRdVS4CdlJ8qafyP+9KIj/nE/d7kKwH9jgS72e9DV+kvfTWgct4ZyP8Byb8BPG7MaaIIkAQAAAAASUVORK5CYII="); }
.marketing-app .discovery-scene .provider-node { display:none; }
.marketing-app .discovery-scene .signal-float { bottom:28px; }
.marketing-app .provider-group { width:100%; min-width:0; }
@media(max-width:700px) {
 .marketing-app .provider-group { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px 12px; padding:0 20px; }
 .marketing-app .provider-group > span { gap:6px; }
 .marketing-app .provider-strip strong { font-size:11px; }
 .marketing-app .provider-strip img { width:20px; height:20px; }
}

/* Compact first impression; the scene remains the visual focal point. */
.marketing-app .hero.wrap { width:min(780px,calc(100% - 48px)); padding-top:44px; padding-bottom:16px; }
.marketing-app .hero h1 { max-width:760px; margin-inline:auto; font-size:clamp(36px,4.4vw,60px); line-height:1.08; letter-spacing:-.05em; }
.marketing-app .hero .announcement { margin-bottom:20px; min-height:32px; }
.marketing-app .hero-copy { max-width:620px; font-size:16px; line-height:1.6; margin-top:20px; }
.marketing-app .hero-detail { font-size:14px; margin-top:8px; }
.marketing-app .hero .hero-actions { margin-top:20px; }
.marketing-app .hero .hero-actions .button { min-height:44px; padding:10px 18px; font-size:13px; }
.marketing-app .hero-note { font-size:11px; margin-top:12px; }
/* Rings and the gradient belong to the entire closing section. */
.marketing-app .closing-footer > .early-decoration { inset:0; z-index:-1; pointer-events:none; transform-origin:50% 60%; }
.marketing-app .closing-footer .early-access-card { overflow:visible; }
.marketing-app .closing-footer .marketing-footer { position:relative; border-top:0; }
.marketing-app .closing-footer .marketing-footer::before { content:''; position:absolute; top:0; height:1px; left:max(24px,calc((100% - var(--marketing-width)) / 2)); right:max(24px,calc((100% - var(--marketing-width)) / 2)); background:linear-gradient(90deg,transparent,#8798b528 15%,#8798b528 85%,transparent); }
@media(max-width:700px) {
 .marketing-app .hero.wrap { width:calc(100% - 40px); padding-top:32px; }
 .marketing-app .hero h1 { font-size:clamp(34px,8.8vw,48px); }
 .marketing-app .hero-copy { font-size:14px; max-width:440px; }
 .marketing-app .hero-detail { font-size:13px; }
}

/* Geographic positions are written by the globe’s shared rotation loop. */
.marketing-app .globe-wrap.globe-ready .css-globe { opacity:0; }

/* Landing motion: each section tells its own story once it enters the viewport.
   Hidden states live inside the keyframes, so content stays visible without JS. */
@keyframes rise-in { from { opacity:0; transform:translateY(12px); } }
@keyframes draw-in { from { transform:scaleX(0); } }
@keyframes grow-bar { from { transform:scaleX(0); } }
@keyframes pop-in { from { opacity:0; transform:scale(.72); } }
@keyframes tick-in { from { opacity:0; transform:translateX(-6px); } }

.marketing-app .section-heading.step-revealed { animation:rise-in 640ms var(--ease-out) both; }

/* Insights: the four widgets build themselves in view. */
.marketing-app #insights .feature-card.step-revealed .feature-copy { animation:rise-in 560ms var(--ease-out) both; }
.marketing-app #insights .feature-card.step-revealed .feature-copy h3 { animation:rise-in 520ms var(--ease-out) 70ms both; }
.marketing-app #insights .feature-card.step-revealed .feature-copy p { animation:rise-in 520ms var(--ease-out) 140ms both; }
.marketing-app #insights .source-row { animation:rise-in 460ms var(--ease-out) both; }
.marketing-app #insights .source-row:nth-child(2) { animation-delay:90ms; }
.marketing-app #insights .source-row:nth-child(3) { animation-delay:180ms; }
.marketing-app #insights .source-row:nth-child(4) { animation-delay:270ms; }
.marketing-app #insights .funnel-stats > div { animation:rise-in 480ms var(--ease-out) both; }
.marketing-app #insights .funnel-stats > div:nth-child(2) { animation-delay:110ms; }
.marketing-app #insights .marketing-funnel-step { animation:rise-in 480ms var(--ease-out) both; }
.marketing-app #insights .marketing-funnel-step:nth-child(1) { animation-delay:180ms; }
.marketing-app #insights .marketing-funnel-step:nth-child(2) { animation-delay:300ms; }
.marketing-app #insights .marketing-funnel-step:nth-child(3) { animation-delay:420ms; }
.marketing-app #insights .marketing-funnel-track > span { transform-origin:left; animation:grow-bar 720ms var(--ease-out) both; }
.marketing-app #insights .marketing-funnel-step:nth-child(2) .marketing-funnel-track > span { animation-delay:120ms; }
.marketing-app #insights .marketing-funnel-step:nth-child(3) .marketing-funnel-track > span { animation-delay:240ms; }
.marketing-app #insights .action-card .action-card-heading { animation:rise-in 460ms var(--ease-out) 60ms both; }
.marketing-app #insights .action-card h4 { animation:rise-in 520ms var(--ease-out) 140ms both; }
.marketing-app #insights .action-card .choice { animation:tick-in 460ms var(--ease-out) both; }
.marketing-app #insights .action-card .choice:nth-child(2) { animation-delay:120ms; }
.marketing-app #insights .action-card .choice:nth-child(3) { animation-delay:240ms; }
.marketing-app #insights .action-card .brief-progress { animation:rise-in 460ms var(--ease-out) 360ms both; }
.marketing-app #insights .shortlist-question { animation:rise-in 520ms var(--ease-out) both; }
.marketing-app #insights .shortlist-brands > span { animation:pop-in 520ms var(--ease-out) both; }
.marketing-app #insights .shortlist-brands > span:nth-child(1) { animation-delay:160ms; }
.marketing-app #insights .shortlist-brands > span:nth-child(2) { animation-delay:260ms; }
.marketing-app #insights .shortlist-brands > span:nth-child(3) { animation-delay:360ms; }
.marketing-app #insights .shortlist-brands > span:nth-child(4) { animation-delay:460ms; }

/* Workflow step 1: the site is mapped, so the company mark loads with the domain. */
.workflow-address .workflow-site { display:flex; align-items:center; gap:8px; }
.workflow-address .workflow-brand { border-radius:6px; }
.marketing-app .domain-visual > .workflow-window .workflow-brand { animation:pop-in 520ms var(--ease-out) 120ms both; }
.marketing-app .domain-visual > .workflow-window .workflow-lines i { animation:workflow-line 3.5s ease-in-out infinite alternate; }
.marketing-app .domain-visual > .workflow-window .workflow-lines i:nth-child(2) { animation-delay:.3s; }
.marketing-app .domain-visual > .workflow-window .workflow-lines i:nth-child(3) { animation-delay:.6s; }

/* Workflow step 2: a cursor picks the questions one at a time. */
.marketing-app .steps-grid .step-visual > .workflow-cursor {
  position:absolute; left:198px; top:20px; display:block; width:0; height:0; padding:0; background:none;
  border:0; border-radius:0; box-shadow:none; z-index:3;
}
.marketing-app .steps-grid .step-visual > .workflow-cursor::before {
  content:''; display:block; flex:none; width:15px; height:15px;
  border:1.5px solid #fff; border-radius:3px 3px 3px 0; background:var(--accent-text);
  box-shadow:0 3px 8px #182c5033; transform:rotate(-14deg); transform-origin:top left;
}
.marketing-app .steps-grid .step-visual > .workflow-cursor::after {
  content:''; position:absolute; left:-9px; top:-9px; width:32px; height:32px;
  border-radius:50%; background:var(--accent-text); opacity:0;
}
.marketing-app .steps-grid article.step-revealed .step-visual.prompt-visual > .workflow-cursor { animation:cursor-tour 7.5s var(--ease-out) 400ms infinite; }
.marketing-app .steps-grid article.step-revealed .step-visual.prompt-visual > .workflow-cursor::after { animation:cursor-tap 2.5s ease-out 400ms infinite; }
.marketing-app .steps-grid article.step-revealed .step-visual.prompt-visual .workflow-questions > span { animation:question-pick 7.5s ease-in-out 400ms infinite; }
.marketing-app .steps-grid article.step-revealed .step-visual.prompt-visual .workflow-questions > span:nth-child(2) { animation-delay:2.9s; }
.marketing-app .steps-grid article.step-revealed .step-visual.prompt-visual .workflow-questions > span:nth-child(3) { animation-delay:5.4s; }
@keyframes cursor-tour {
  0%, 22% { transform:translate(0,0); }
  30%, 55% { transform:translate(16px,80px); }
  63%, 88% { transform:translate(0,160px); }
  100% { transform:translate(0,0); }
}
@keyframes cursor-tap {
  0%, 8% { transform:scale(.35); opacity:.42; }
  16%, 100% { transform:scale(1.5); opacity:0; }
}
@keyframes question-pick {
  0%, 26%, 100% { border-color:var(--border); background:var(--surface); }
  8%, 18% { border-color:var(--accent-text); background:var(--sky-1); }
}

/* Workflow step 3: the shortlist assembles, then the brief is generated. */
.marketing-app .workflow-shortlist { display:flex; align-items:center; gap:8px; padding:14px 14px 0; }
.marketing-app .workflow-shortlist img { display:block; }
.marketing-app .workflow-shortlist > img { padding:6px; background:var(--surface); border:1px solid var(--border); border-radius:8px; }
.marketing-app .workflow-you { display:grid; place-items:center; padding:6px; border:1px dashed var(--accent-text); border-radius:8px; background:var(--sky-1); }
.marketing-app .insight-visual.step-revealed .workflow-shortlist > img { animation:pop-in 460ms var(--ease-out) both; }
.marketing-app .insight-visual.step-revealed .workflow-shortlist > img:nth-child(1) { animation-delay:.1s; }
.marketing-app .insight-visual.step-revealed .workflow-shortlist > img:nth-child(2) { animation-delay:.35s; }
.marketing-app .insight-visual.step-revealed .workflow-shortlist > img:nth-child(3) { animation-delay:.6s; }
.marketing-app .insight-visual.step-revealed .workflow-you { animation:pop-in 520ms var(--ease-out) .95s both; }
.marketing-app .insight-visual.step-revealed > .workflow-opportunity > strong { animation:rise-in 520ms var(--ease-out) 1.25s both; }
.marketing-app .insight-visual.step-revealed > .workflow-opportunity > .workflow-result:last-child { animation:rise-in 520ms var(--ease-out) 1.55s both; }
@media(prefers-reduced-motion:reduce) {
  .marketing-app .section-heading.step-revealed,
  .marketing-app #insights .feature-card.step-revealed *,
  .marketing-app .step-visual.step-revealed *,
  .marketing-app .step-visual.step-revealed *::before,
  .marketing-app .step-visual.step-revealed *::after { animation:none !important; }
}

/* Motion holds its frame while its section is off screen, and picks up on return.
   The hosts are #approach, #insights, the closing footer and the discovery scene. */
.marketing-app [data-in-view="false"] *,
.marketing-app [data-in-view="false"] *::before,
.marketing-app [data-in-view="false"] *::after,
.marketing-app :is(#approach,#insights,.closing-footer,.discovery-scene)[data-in-view="false"],
.marketing-app :is(#approach,#insights,.closing-footer,.discovery-scene)[data-in-view="false"]::before,
.marketing-app :is(#approach,#insights,.closing-footer,.discovery-scene)[data-in-view="false"]::after { animation-play-state:paused !important; }


/* Mentionloom brand footer */
.marketing-app .brand-footer {
  margin: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f5fbff;
}
.marketing-app .brand-footer-shell {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 70px clamp(28px, 6vw, 92px) 0;
  border: 1px solid #0000d8;
  border-radius: 26px;
  background: #000036;
}
.marketing-app .brand-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr .8fr 1.25fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
}
.marketing-app .brand-footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.marketing-app .brand-footer-label {
  margin-bottom: 8px;
  color: #7f92ff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.marketing-app .brand-footer a {
  color: #f5fbff;
  text-decoration: none;
}
.marketing-app .brand-footer-col a {
  font-size: 16px;
  line-height: 1.35;
  opacity: .82;
  transition: opacity 150ms ease;
}
.marketing-app .brand-footer-col a:hover,
.marketing-app .brand-footer-meta a:hover {
  opacity: 1;
}
.marketing-app .brand-footer-note {
  justify-self: end;
  margin: 43px 0 0;
  max-width: 260px;
  color: #aeb9ff;
  font-family: "Space Grotesk", var(--font-sans);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.marketing-app .brand-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid #263078;
  color: #7f8abf;
  font-size: 11px;
}
.marketing-app .brand-footer-meta a {
  color: inherit;
  opacity: .82;
}
.marketing-app .brand-footer-logo {
  display: block;
  width: 100%;
  margin-top: 62px;
  transform: translateY(18px);
}
.marketing-app .brand-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.marketing-app .early-access-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 48px;
}
.marketing-app .early-access-section + .brand-footer {
  margin-top: 0;
}

/* Simple company / legal pages */
.marketing-app.info-page {
  min-height: 100vh;
  background: #fff;
}
.marketing-app .info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.marketing-app .info-header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.marketing-app .info-header nav a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}
.marketing-app .info-header nav a:hover {
  color: var(--text);
}
.marketing-app .info-main {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 120px;
}
.marketing-app .info-hero {
  padding-bottom: 58px;
  border-bottom: 1px solid var(--border);
}
.marketing-app .info-hero h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  font-family: "Space Grotesk", var(--font-sans);
  font-size: clamp(44px, 7vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
}
.marketing-app .info-hero > p {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.marketing-app .info-section {
  padding: 42px 0 0;
}
.marketing-app .info-section h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", var(--font-sans);
  font-size: 25px;
  letter-spacing: -.035em;
}
.marketing-app .info-section p,
.marketing-app .info-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.marketing-app .info-section p + p {
  margin-top: 14px;
}
.marketing-app .info-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.marketing-app .info-list li {
  padding: 15px 0;
  border-top: 1px solid var(--border);
  color: var(--text);
}
.marketing-app .info-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--subtle);
}
.marketing-app .info-contact-card p {
  margin: 0;
}
.marketing-app .info-date {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 760px) {
  .marketing-app .brand-footer { margin: 8px; }
  .marketing-app .brand-footer-shell {
    min-height: 0;
    padding: 44px 24px 0;
    border-radius: 20px;
  }
  .marketing-app .brand-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .marketing-app .brand-footer-note {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 0;
  }
  .marketing-app .brand-footer-col a { font-size: 14px; }
  .marketing-app .brand-footer-meta { margin-top: 48px; }
  .marketing-app .brand-footer-logo { margin-top: 38px; transform: translateY(8px); }
  .marketing-app .info-header nav { gap: 14px; }
  .marketing-app .info-header nav a:nth-child(2) { display: none; }
  .marketing-app .info-main { width: calc(100% - 40px); padding: 62px 0 84px; }
  .marketing-app .info-hero { padding-bottom: 40px; }
  .marketing-app .info-hero > p { font-size: 16px; }
  .marketing-app .info-contact-card { align-items: flex-start; flex-direction: column; }
}


/* Six-provider segmented control */
.marketing-app .engine-controls { justify-content:flex-start; }
.marketing-app .engine-controls .segmented {
  display:flex;
  flex-wrap:nowrap;
  width:100%;
  max-width:none;
  overflow-x:auto;
  scrollbar-width:none;
}
.marketing-app .engine-controls .segmented::-webkit-scrollbar { display:none; }
.marketing-app .engine-controls .segmented > button { flex:0 0 auto; }

/* Country flags stay in the question card; globe markers remain plain dots. */
.marketing-app .question-float .card-label img {
  width:22px;
  height:15px;
  object-fit:cover;
  border-radius:2px;
  box-shadow:0 0 0 1px #00000012;
}

/* Footer becomes edge-to-edge only at the absolute page bottom */
.marketing-app .brand-footer {
  transition:margin 520ms var(--ease-out);
}
.marketing-app .brand-footer-shell {
  border:0;
  transition:border-radius 520ms var(--ease-out);
}
.marketing-app .brand-footer.is-flush { margin:0; }
.marketing-app .brand-footer.is-flush .brand-footer-shell { border-radius:0; }

@media (max-width:760px) {
  .marketing-app .engine-controls .segmented {
    gap:2px;
    overflow:hidden;
  }
  .marketing-app .engine-controls .segmented > button:first-child {
    flex:0 0 70px;
    min-width:70px;
    padding-inline:8px;
    font-size:11px;
  }
  .marketing-app .engine-controls .segmented > button:not(:first-child) {
    flex:1 1 0;
    min-width:38px;
    padding:7px 6px;
    justify-content:center;
  }
  .marketing-app .engine-controls .segmented img {
    width:18px;
    height:18px;
  }
  .marketing-app .brand-footer.is-flush { margin:0; }
}


/* Interactive globe: finger/mouse drag without fighting page scroll. */
.marketing-app .globe-explore {
  touch-action:none;
  user-select:none;
  -webkit-user-select:none;
  cursor:grab;
  z-index:1;
}
.marketing-app .globe-wrap.is-dragging .globe-explore { cursor:grabbing; }
.marketing-app .globe-wrap.is-dragging { cursor:grabbing; }

/* Keep the engine switcher compact and fully visible on phones. */
@media (max-width:760px) {
  .marketing-app .engine-controls .segmented {
    width:100%;
    display:grid;
    grid-template-columns:56px repeat(5,minmax(0,1fr));
    gap:2px;
    overflow:hidden;
  }
  .marketing-app .engine-controls .segmented > button,
  .marketing-app .engine-controls .segmented > button:first-child,
  .marketing-app .engine-controls .segmented > button:not(:first-child) {
    min-width:0;
    width:100%;
    padding:7px 5px;
    justify-content:center;
  }
  .marketing-app .engine-controls .segmented > button:first-child {
    font-size:11px;
    white-space:nowrap;
  }
}

/* Footer ends in brand navy: no white strip and no position-changing bottom animation. */
.marketing-app .brand-footer {
  margin:12px 12px 0;
  background:#000036;
  border-radius:26px 26px 0 0;
  transition:none;
}
.marketing-app .brand-footer-shell {
  border-radius:26px 26px 0 0;
  transition:none;
  padding-bottom:max(0px, env(safe-area-inset-bottom));
}
.marketing-app .brand-footer.is-flush { margin:12px 12px 0; }
.marketing-app .brand-footer.is-flush .brand-footer-shell { border-radius:26px 26px 0 0; }
@media (max-width:760px) {
  .marketing-app .brand-footer {
    margin:8px 8px 0;
    border-radius:20px 20px 0 0;
  }
  .marketing-app .brand-footer-shell { border-radius:20px 20px 0 0; }
  .marketing-app .brand-footer.is-flush { margin:8px 8px 0; }
  .marketing-app .brand-footer.is-flush .brand-footer-shell { border-radius:20px 20px 0 0; }
}

/* Globe marker hardening: never render nested labels/assets inside map pins. */
.marketing-app .globe-pin > * { display:none !important; }


/* Viewport-only component motion */
.marketing-app.motion-ready [data-reveal] {
  opacity:0;
  transform:translateY(18px);
  transition:none;
}

.marketing-app.motion-ready [data-reveal].is-visible {
  animation:viewport-build 680ms var(--ease-out) forwards;
}

.marketing-app.motion-ready .value-trio > [data-reveal]:nth-child(2).is-visible,
.marketing-app.motion-ready .feature-grid > [data-reveal]:nth-child(2).is-visible,
.marketing-app.motion-ready .steps-grid > [data-reveal]:nth-child(2).is-visible {
  animation-delay:90ms;
}

.marketing-app.motion-ready .value-trio > [data-reveal]:nth-child(3).is-visible,
.marketing-app.motion-ready .feature-grid > [data-reveal]:nth-child(3).is-visible,
.marketing-app.motion-ready .steps-grid > [data-reveal]:nth-child(3).is-visible {
  animation-delay:180ms;
}

.marketing-app.motion-ready .feature-grid > [data-reveal]:nth-child(4).is-visible {
  animation-delay:270ms;
}

@keyframes viewport-build {
  from { opacity:0; transform:translateY(18px) scale(.992); }
  to { opacity:1; transform:translateY(0) scale(1); }
}

/* Component internals assemble only after their card enters the viewport. */
.marketing-app.motion-ready .feature-card .source-row,
.marketing-app.motion-ready .feature-card .funnel-bar,
.marketing-app.motion-ready .feature-card .shortlist-brands > span,
.marketing-app.motion-ready .feature-card .action-checks .choice,
.marketing-app.motion-ready .product-stage .competitor-row {
  opacity:0;
  transform:translateY(8px);
}

.marketing-app.motion-ready .feature-card.is-visible .source-row,
.marketing-app.motion-ready .feature-card.is-visible .funnel-bar,
.marketing-app.motion-ready .feature-card.is-visible .shortlist-brands > span,
.marketing-app.motion-ready .feature-card.is-visible .action-checks .choice,
.marketing-app.motion-ready .product-stage.is-visible .competitor-row {
  animation:component-build 460ms var(--ease-out) forwards;
}

.marketing-app.motion-ready .feature-card.is-visible :is(.source-row,.funnel-bar,.shortlist-brands > span,.action-checks .choice):nth-child(2),
.marketing-app.motion-ready .product-stage.is-visible .competitor-row:nth-child(2) { animation-delay:70ms; }
.marketing-app.motion-ready .feature-card.is-visible :is(.source-row,.funnel-bar,.shortlist-brands > span,.action-checks .choice):nth-child(3),
.marketing-app.motion-ready .product-stage.is-visible .competitor-row:nth-child(3) { animation-delay:140ms; }
.marketing-app.motion-ready .feature-card.is-visible :is(.source-row,.funnel-bar,.shortlist-brands > span,.action-checks .choice):nth-child(4),
.marketing-app.motion-ready .product-stage.is-visible .competitor-row:nth-child(4) { animation-delay:210ms; }

@keyframes component-build {
  from { opacity:0; transform:translateY(8px); }
  to { opacity:1; transform:translateY(0); }
}

/* Animated internals are paused off-screen and resume only while their section is visible. */
.marketing-app #approach .domain-visual > span,
.marketing-app #approach .prompt-visual > span,
.marketing-app #approach .insight-visual > span {
  animation-play-state:paused;
}
.marketing-app #approach[data-in-view="true"] .domain-visual > span,
.marketing-app #approach[data-in-view="true"] .prompt-visual > span,
.marketing-app #approach[data-in-view="true"] .insight-visual > span {
  animation-play-state:running;
}

@media (prefers-reduced-motion:reduce) {
  .marketing-app.motion-ready [data-reveal],
  .marketing-app.motion-ready .feature-card .source-row,
  .marketing-app.motion-ready .feature-card .funnel-bar,
  .marketing-app.motion-ready .feature-card .shortlist-brands > span,
  .marketing-app.motion-ready .feature-card .action-checks .choice,
  .marketing-app.motion-ready .product-stage .competitor-row {
    opacity:1 !important;
    transform:none !important;
    animation:none !important;
  }
}

/* deployment sync: discovery cleanup */

/* sync canvas sizing deployment */
