/* ── Cursor personalizado (arrow.svg → 32px para compatibilidad) ── */
:root {
  --cursor-arrow: url('../images/arrow-cursor.svg') 3 2, auto;
}

@media (pointer: fine) {
  html,
  body,
  .page-loader,
  .page-loader * {
    cursor: var(--cursor-arrow);
  }

  a,
  button,
  select,
  label,
  .btn,
  [role='button'],
  summary,
  input,
  textarea,
  [contenteditable='true'] {
    cursor: var(--cursor-arrow);
  }
}

/* ── Site logo (images/logo.svg) ── */
.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.site-logo__img {
  display: block;
  height: 2.3rem;
  width: auto;
  max-width: min(12.075rem, 46vw);
}

.site-logo:hover .site-logo__img {
  opacity: 0.88;
}

.site-logo--footer .site-logo__img {
  height: 1.725rem;
  max-width: 9.2rem;
}

.site-logo--footer.site-logo--on-dark .site-logo__img {
  filter: none;
}

/* ── Hero headline (+20%) y copy inferior (−20%) ── */
#hero .hero-headline {
  font-size: 2.7rem;
  line-height: 1.06;
}

@media (min-width: 640px) {
  #hero .hero-headline {
    font-size: 3.6rem;
  }
}

@media (min-width: 1024px) {
  #hero .hero-headline {
    font-size: 4.5rem;
  }
}

#hero .hero-panel--copy .hero-lead {
  font-size: 0.9rem;
}

#hero .hero-panel--copy .hero-social {
  font-size: 0.7rem;
}

#hero .hero-panel--copy .hero-demo-hint {
  font-size: 0.55rem;
}

/* ── Hero lead ── */
.hero-lead {
  color: #6b7280;
  text-wrap: balance;
}

.hero-demo-hint {
  margin-top: 0.875rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #a8a29e;
  opacity: 0.85;
}

.hero-demo-hint::before {
  content: '';
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  margin-right: 0.375rem;
  vertical-align: 0.05em;
  border-radius: 50%;
  background: #7c6af7;
  opacity: 0.7;
}

.hero-lead__what {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #0f0f1a;
}

/* ── Base ── */
html {
  overflow-x: clip;
}

body {
  background-color: #ffffff;
  color: #0f0f1a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: clip;
  max-width: 100%;
}

/* ── Fondos de módulos + transiciones en gradiente ── */
:root {
  --bg-cream: #f0ebe4;
  --bg-warm: #faf9f7;
  --bg-white: #ffffff;
  --bg-neutral: #fafafa;
  --bg-violet-soft: #f3effa;
  --bg-violet-mid: #e8e0fc;
  --bg-violet-end: #ddd6fe;
  --bg-violet-bridge: #d4c9fa;
  --bg-violet-deep: #c8bcf6;
  --section-fade: 8rem;
}

.hero--unified {
  background: linear-gradient(
    180deg,
    var(--bg-cream) 0%,
    var(--bg-cream) 72%,
    var(--bg-neutral) 100%
  ) !important;
}

/* ── Hero entrance ── */
@keyframes hero-enter-up {
  from {
    opacity: 0;
    transform: translate3d(0, 1.125rem, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-enter-fade {
  from { opacity: 0; }

  to { opacity: 1; }
}

.hero-enter {
  opacity: 0;
}

#hero.hero--entered .hero-enter {
  animation: hero-enter-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--hero-d, 0ms);
}

#hero.hero--entered .hero-enter--fade {
  animation-name: hero-enter-fade;
  animation-duration: 0.75s;
}

/* Cards: opacity via transition so float animations keep transform */
.hero-cards .hero-card {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--hero-card-d, 0ms);
}

#hero.hero--entered .hero-cards .hero-card {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-enter {
    opacity: 1;
  }

  #hero.hero--entered .hero-enter {
    animation: none;
  }

  .hero-cards .hero-card {
    opacity: 1;
    transition: none;
  }
}

.max-w-6xl,
.max-w-3xl {
  width: 100%;
  min-width: 0;
}
::selection { background: #7c6af730; color: #0f0f1a; }

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #7c6af7 0%, #a78bfa 40%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-green {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Dot background ── */
.dot-bg {
  background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Floating card animation ── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-14px) rotate(-1deg); }
}
@keyframes hero-float-main {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-1deg); }
  50%       { transform: translateX(-50%) translateY(-14px) rotate(-1deg); }
}
.float-card { animation: float 4.5s ease-in-out infinite; }
.hero-card--main.float-card { animation: hero-float-main 4.5s ease-in-out infinite; }

/* ── Hero blobs ── */
.blob-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,106,247,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  pointer-events: none;
}
.blob-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,179,237,0.10) 0%, transparent 70%);
  border-radius: 50%;
  top: 50px;
  right: -80px;
  pointer-events: none;
}

/* ── Card shadow ── */
.card-shadow {
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
}
.card-shadow-hover:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.10), 0 8px 32px rgba(0,0,0,0.08);
}

/* ── Shimmer badge (light) ── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-badge {
  background: linear-gradient(90deg, #ede9fe 25%, #ddd6fe 50%, #ede9fe 75%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

/* ── Scroll fade-in ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Sticky stacks break if parent uses transform on reveal */
.reveal.reveal--no-transform {
  transform: none;
}
.reveal.reveal--no-transform.visible {
  transform: none;
}

/* ── Input focus ── */
.email-input:focus {
  outline: none;
  border-color: #7c6af7;
  box-shadow: 0 0 0 3px rgba(124,106,247,0.15);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-weight: 600;
  line-height: 1.25;
  border: 1.5px solid transparent;
  cursor: var(--cursor-arrow);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(124, 106, 247, 0.28),
    0 1px 2px rgba(15, 15, 26, 0.06);
}

.btn:active:not(:disabled) {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.65;
  cursor: var(--cursor-arrow);
}

/* Sizes */
.btn-sm { font-size: 0.875rem; padding: 0.5rem 1.25rem; }
.btn-md { font-size: 0.875rem; padding: 0.625rem 1.5rem; }
.btn-lg { font-size: 1rem; padding: 0.875rem 2rem; }

/* Shapes */
.btn-pill { border-radius: 9999px; }
.btn-rounded { border-radius: 0.75rem; }

/* Primary — accent gradient */
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #9488f9 0%, #7c6af7 42%, #6254d4 100%);
  border-color: #5b4ec9;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 1px 2px rgba(15, 15, 26, 0.06),
    0 4px 14px rgba(124, 106, 247, 0.32);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: #4f44b8;
  background: linear-gradient(180deg, #9d92fa 0%, #8476f8 42%, #6a5ce0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 2px 4px rgba(15, 15, 26, 0.08),
    0 10px 28px rgba(124, 106, 247, 0.42);
}

/* Secondary — outlined light */
.btn-secondary {
  color: #374151;
  background: #fff;
  border-color: #e5e7eb;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(15, 15, 26, 0.04);
}

.btn-secondary:hover:not(:disabled) {
  transform: translateY(-2px);
  color: #1f2937;
  border-color: #c4b5fd;
  background: #fafafe;
  box-shadow:
    inset 0 1px 0 #fff,
    0 2px 8px rgba(124, 106, 247, 0.12);
}

/* Dark — hero main CTA */
.btn-dark {
  color: #fff;
  background: linear-gradient(180deg, #252538 0%, #0f0f1a 100%);
  border-color: #3d3d52;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1px 2px rgba(15, 15, 26, 0.1),
    0 6px 20px rgba(15, 15, 26, 0.22);
}

.btn-dark:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: #52526a;
  background: linear-gradient(180deg, #2f2f45 0%, #1a1a2e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 4px 16px rgba(15, 15, 26, 0.28);
}

/* Light — on purple backgrounds */
.btn-light {
  color: #5b21b6;
  background: linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 4px 24px rgba(15, 15, 26, 0.18);
}

.btn-light:hover:not(:disabled) {
  transform: translateY(-2px);
  color: #4c1d95;
  border-color: #fff;
  background: #fff;
  box-shadow:
    inset 0 1px 0 #fff,
    0 8px 32px rgba(15, 15, 26, 0.22);
}

/* ── Mobile menu transition ── */
[x-cloak] { display: none !important; }

/* ── Screenshot blur block ── */
.screenshot-block {
  background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 50%, #ede9fe 100%);
  border-radius: 4px;
}

/* Hero card: mini página + botón marcado como error */
.hero-screenshot {
  isolation: isolate;
}

.hero-screenshot__scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  pointer-events: none;
}

.hero-screenshot__line {
  display: block;
  width: 72%;
  height: 0.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-screenshot__line--sm {
  width: 48%;
}

.hero-screenshot__cta {
  position: relative;
  margin-top: 0.125rem;
}

.hero-screenshot__mock-btn {
  padding: 0.3125rem 0.875rem;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #4ade80;
  border: 2px dashed #ef4444;
  border-radius: 0.3125rem;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
  cursor: var(--cursor-arrow);
  pointer-events: none;
}

.hero-screenshot__mark {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  color: #fff;
  background: #ef4444;
  border: 2px solid #fff;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.45);
  cursor: var(--cursor-arrow);
  pointer-events: none;
  animation: hero-screenshot-mark-pulse 2.4s ease-in-out infinite;
}

.hero-screenshot__mark::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: 9999px;
  animation: hero-screenshot-mark-ring 2.4s ease-out infinite;
}

@keyframes hero-screenshot-mark-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes hero-screenshot-mark-ring {
  0% {
    opacity: 0.8;
    transform: scale(0.85);
  }
  70%, 100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

/* ── Nav ── */
.nav-wrapper {
  background: transparent;
  border: none;
  box-shadow: none;
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
}

.nav-bar__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.nav-bar__side--left {
  flex: 1;
  min-width: 0;
}

.nav-bar__side--right {
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0.28s ease;
  }

  .nav-cta--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 767px) {
  .nav-bar__side--left {
    flex: 0;
    width: 2.25rem;
    visibility: hidden;
    pointer-events: none;
  }
}

.site-logo--nav .site-logo__img {
  height: 2rem;
}

@media (min-width: 768px) {
  .site-logo--nav .site-logo__img {
    height: 2.15rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #0f0f1a;
}

.nav-lang-link {
  align-items: center;
  padding: 0.375rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b7280;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-lang-link:hover {
  color: #0f0f1a;
  border-color: #d1d5db;
  background: #f9fafb;
}

.nav-bar__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #6b7280;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: var(--cursor-arrow);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-bar__menu-btn:hover {
  color: #0f0f1a;
  background: rgba(15, 15, 26, 0.05);
}

@media (max-width: 767px) {
  .nav-wrapper {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 15, 26, 0.08);
    box-shadow: 0 1px 8px rgba(15, 15, 26, 0.06);
  }
}

.nav-mobile-menu {
  padding: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (max-width: 767px) {
  .nav-mobile-menu {
    margin-top: 0.25rem;
    padding-top: 0.875rem;
    border-top: 1px solid rgba(15, 15, 26, 0.06);
  }
}

.nav-mobile-menu__link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.2s ease;
}

.nav-mobile-menu__link:hover {
  color: #0f0f1a;
}

/* ── Section alt bg ── */
.section-alt { background-color: #fafafe; }

/* ── Hero: copy + visual (ancho completo, poco margen lateral) ── */
.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: 94vh;
}

#hero .hero-panel--copy,
#hero .hero-panel--visual {
  padding-inline: clamp(1rem, 2.5vw, 1.25rem);
}

@media (min-width: 1024px) {
  .hero__layout {
    grid-template-columns: minmax(0, 38rem) minmax(17rem, 20rem);
    justify-content: center;
    align-items: center;
    column-gap: clamp(0.75rem, 1.75vw, 1.25rem);
    max-width: min(100%, 76rem);
    width: 100%;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 3vw, 2rem);
    min-height: 94vh;
  }

  .hero-panel--copy {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-inline: clamp(0.75rem, 1.5vw, 1rem);
    max-width: none;
  }

  .hero-panel--visual {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-inline: clamp(0.5rem, 1vw, 0.75rem);
    min-height: 0;
  }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(3deg); }
  50%       { transform: translateY(-10px) rotate(3deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(-1deg); }
}
.float-card-2 { animation: float2 5.5s ease-in-out infinite; }
.float-card-3 { animation: float3 6.5s ease-in-out infinite; }

/* Hero cards — composición centrada en el panel visual */
.hero-panel--visual {
  background: transparent;
}

.hero-cards {
  position: relative;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}

.hero-cards__stage {
  position: relative;
  width: min(100%, 20rem);
  height: 400px;
  margin-inline: auto;
}

.hero-card {
  pointer-events: none;
}

.hero-card--back {
  top: 0;
  left: 52%;
  right: auto;
  z-index: 10;
}

.hero-card--main {
  top: 20%;
  left: 50%;
  right: auto;
  z-index: 30;
}

.hero-card--stats {
  bottom: 4%;
  left: 38%;
  right: auto;
  top: auto;
  z-index: 20;
}

@media (min-width: 640px) {
  .hero-cards__stage {
    width: min(100%, 21rem);
    height: 420px;
  }

  .hero-card--main {
    top: 18%;
  }

  .hero-card--stats {
    bottom: 6%;
    left: 40%;
  }
}

@media (min-width: 1024px) {
  .hero-cards {
    max-width: 100%;
  }

  .hero-cards__stage {
    width: min(100%, 20.5rem);
    height: min(78vh, 460px);
  }

  .hero-card--main {
    top: 16%;
  }

  .hero-card--back {
    top: 2%;
    left: 50%;
  }

  .hero-card--stats {
    bottom: 8%;
    left: 36%;
  }
}

/* dot overlay for right panel */
.dot-bg-white {
  background-image: radial-gradient(circle, rgba(255,255,255,0.25) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Hero word rotator ── */
.word-rotator {
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  line-height: 1.1;
  transition: width 0.4s ease;
}

.word-rotator__track {
  display: flex;
  flex-direction: column;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.word-rotator__word {
  display: block;
  white-space: nowrap;
  padding-bottom: 0.05em;
  background: linear-gradient(120deg, #6254d4 0%, #7c6af7 35%, #a78bfa 60%, #60a5fa 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: word-rotator-gradient 6s ease-in-out infinite;
}

@keyframes word-rotator-gradient {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@supports not (background-clip: text) {
  .word-rotator__word {
    color: #7c6af7;
    background: none;
    -webkit-text-fill-color: currentColor;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .word-rotator__word {
    animation: none;
    background-position: 0% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .word-rotator__track {
    transition: none;
  }
}

/* ── Waitlist chatbox (bottom-right) ── */
.waitlist-widget {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 50;
  width: min(calc(100vw - 2rem), 22rem);
  height: 0;
  pointer-events: none;
}

.waitlist-widget > * {
  pointer-events: auto;
}

.waitlist-widget__launcher,
.waitlist-widget__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: bottom right;
}

.waitlist-widget__launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem 0.75rem 0.875rem;
  color: #fff;
  background: linear-gradient(135deg, #7c6af7 0%, #6254d4 100%);
  border: none;
  border-radius: 9999px;
  box-shadow:
    0 4px 14px rgba(124, 106, 247, 0.4),
    0 8px 24px rgba(15, 15, 26, 0.12);
  cursor: var(--cursor-arrow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: waitlist-launcher-enter 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.waitlist-widget__launcher:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 18px rgba(124, 106, 247, 0.45),
    0 10px 28px rgba(15, 15, 26, 0.14);
}

.waitlist-widget__launcher-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  border: 2px solid rgba(124, 106, 247, 0.45);
  animation: waitlist-pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

.waitlist-widget__launcher-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 9999px;
}

.waitlist-widget__launcher-icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  object-fit: contain;
}

.waitlist-widget__launcher-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.waitlist-widget__panel {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(15, 15, 26, 0.08);
  border-radius: 1rem;
  box-shadow:
    0 4px 6px rgba(15, 15, 26, 0.04),
    0 24px 48px rgba(15, 15, 26, 0.16);
  overflow: hidden;
}

.waitlist-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, #7c6af7 0%, #6254d4 100%);
  color: #fff;
}

.waitlist-widget__header-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.waitlist-widget__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 9999px;
  overflow: hidden;
}

.waitlist-widget__avatar-img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.waitlist-widget__header-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
}

.waitlist-widget__header-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0.125rem 0 0;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.waitlist-widget__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.35);
  animation: waitlist-pulse 2s ease-in-out infinite;
}

.waitlist-widget__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 9999px;
  cursor: var(--cursor-arrow);
  transition: background 0.15s ease;
}

.waitlist-widget__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.waitlist-widget__body {
  padding: 1rem;
  background: #f9fafb;
}

.waitlist-widget__bubble {
  position: relative;
  margin-bottom: 1rem;
  padding: 0.75rem 0.875rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.875rem 0.875rem 0.875rem 0.25rem;
  box-shadow: 0 1px 3px rgba(15, 15, 26, 0.05);
}

.waitlist-widget__bubble p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #374151;
}

.waitlist-widget__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.waitlist-widget__input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f0f1a;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: inset 0 1px 2px rgba(15, 15, 26, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-widget__input::placeholder {
  color: #9ca3af;
}

.waitlist-widget__input:hover {
  border-color: #d1d5db;
}

.waitlist-widget__input:focus {
  outline: none;
  border-color: #7c6af7;
  box-shadow: 0 0 0 3px rgba(124, 106, 247, 0.18);
}

.waitlist-widget__submit {
  margin-top: 0.125rem;
}

.waitlist-widget__error {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #dc2626;
}

.waitlist-widget__success {
  padding: 0.75rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: #047857;
  text-align: center;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 0.75rem;
}

@keyframes waitlist-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes waitlist-pulse-ring {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.2); }
}

@keyframes waitlist-launcher-enter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .waitlist-widget__launcher,
  .waitlist-widget__launcher-pulse,
  .waitlist-widget__status-dot {
    animation: none;
  }
}

/* ── Section intro (shared headers) ── */
.section-intro,
.familiar-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
  padding: 0 0.5rem;
}

@media (min-width: 1024px) {
  .section-intro,
  .familiar-header {
    margin-bottom: 4.5rem;
  }
}

.section-intro__eyebrow,
.familiar-header__eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5b4ec9;
  background: none;
  border: none;
  border-radius: 0;
}

.section-intro__title,
.familiar-header__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #0f0f1a;
  hanging-punctuation: first allow-all;
}

.section-intro__highlight {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, #7c6af7 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro__subtitle,
.familiar-header__subtitle {
  margin-top: 1.5rem;
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.55;
  color: #6b7280;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

/* Título centrado: ¿ ? fuera del bloque óptico al centrar */
.title-optical {
  display: inline-block;
  position: relative;
}

.title-optical--es::before {
  content: '¿';
  position: absolute;
  right: 100%;
  margin-right: 0.06em;
}

.title-optical__q {
  display: inline-block;
  width: 0;
  overflow: visible;
  white-space: nowrap;
  vertical-align: baseline;
}

.section-intro__subtitle-line,
.familiar-header__highlight {
  display: block;
  margin-top: 0.35rem;
}

#colaboracion .section-intro__subtitle {
  line-height: 1.35;
}

#colaboracion .section-intro__subtitle-line {
  margin-top: 0.2rem;
}

.familiar-header__highlight {
  font-weight: 600;
  background: linear-gradient(135deg, #7c6af7 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ¿Te suena familiar? — layout + tarjetas ── */
.familiar-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  overflow: visible;
  padding: 1.5rem 0;
  min-height: 22rem;
}

.familiar-header {
  position: relative;
  z-index: 4;
}

.familiar-game {
  position: relative;
  z-index: 2;
}

.familiar-section .familiar-header {
  margin-bottom: 0;
  text-align: center;
}

.familiar-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  padding: 0;
  min-width: 0;
}

@media (min-width: 1024px) {
  .familiar-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem 2.5rem;
    align-items: center;
  }

  .familiar-section .familiar-header {
    text-align: left;
    max-width: none;
    padding: 0;
  }

  .familiar-section .familiar-header__title {
    font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  }

  .familiar-section .familiar-header__subtitle {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .familiar-game {
    align-items: center;
    justify-self: end;
    width: 100%;
    max-width: 24rem;
  }

  .familiar-deck-scene {
    width: 100%;
    max-width: 22rem;
    margin-left: 0;
    padding: 1.75rem 1rem 0.25rem;
  }
}

.familiar-deck-scene {
  position: relative;
  width: min(100%, 22rem);
  padding: 2rem 1.25rem 0.5rem;
  overflow: visible;
}

.familiar-deck {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 7;
  cursor: default;
  touch-action: manipulation;
  outline: none;
  overflow: visible;
}

.familiar-deck:focus-visible {
  box-shadow: 0 0 0 3px rgba(124, 106, 247, 0.35);
  border-radius: 1.25rem;
}

.familiar-deck__toggle {
  align-self: center;
  margin-top: 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  letter-spacing: 0.02em;
}

.familiar-deck__toggle[aria-pressed='true'] {
  color: #5b4ec9;
  border-color: #c4b5fd;
  background: #fafafe;
}

.familiar-deck .familiar-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transition:
    transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.42s ease;
  transform-origin: center center;
  will-change: transform;
}

.familiar-card--problem:not(.is-top) {
  z-index: 1;
  transform: rotate(-5deg) translate(-10px, 8px) scale(0.96);
}

.familiar-card--solution:not(.is-top) {
  z-index: 1;
  transform: rotate(5deg) translate(10px, 10px) scale(0.96);
}

.familiar-card--problem.is-top {
  z-index: 2;
  transform: rotate(-1.5deg) translate(0, 0) scale(1);
}

.familiar-card--solution.is-top {
  z-index: 2;
  transform: rotate(1.5deg) translate(0, 0) scale(1);
}

.familiar-deck[data-active='solution'] .familiar-card--problem:not(.is-top) {
  transform: rotate(-6deg) translate(-14px, 10px) scale(0.95);
}

.familiar-deck[data-active='problem'] .familiar-card--solution:not(.is-top) {
  transform: rotate(6deg) translate(14px, 12px) scale(0.95);
}

.familiar-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1.125rem;
  border: 2px solid rgba(15, 15, 26, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 16px 40px rgba(15, 15, 26, 0.12),
    0 4px 12px rgba(15, 15, 26, 0.06);
}

.familiar-card--problem .familiar-card__body {
  background: linear-gradient(165deg, #fff5f5 0%, #fde8e8 48%, #fdd4d4 100%);
}

.familiar-chaos {
  position: absolute;
  inset: -1rem -0.75rem;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.4s ease;
}

.familiar-layout:has(#familiar-deck[data-active='solution']) .familiar-chaos {
  opacity: 0;
}

.familiar-chaos__float {
  position: absolute;
  z-index: 3;
  transform: rotate(var(--chaos-rot, 0deg));
  animation: familiar-chaos-drift var(--chaos-dur, 5s) ease-in-out infinite;
  animation-delay: var(--chaos-delay, 0s);
  filter: drop-shadow(0 10px 22px rgba(15, 15, 26, 0.14));
}

/* Mobile */
.familiar-chaos__float--1 { top: 2%; left: -4%; --chaos-rot: -8deg; --chaos-dur: 5.2s; }
.familiar-chaos__float--2 { top: -2%; left: 52%; --chaos-rot: 7deg; --chaos-dur: 4.6s; --chaos-delay: 0.3s; }
.familiar-chaos__float--3 { top: 14%; left: -8%; --chaos-rot: -5deg; --chaos-dur: 4.8s; --chaos-delay: 0.6s; }
.familiar-chaos__float--4 { top: 4%; right: -6%; left: auto; --chaos-rot: 6deg; --chaos-dur: 5.4s; --chaos-delay: 0.2s; }
.familiar-chaos__float--5 { top: 34%; right: 0%; left: auto; --chaos-rot: -6deg; --chaos-dur: 4.4s; --chaos-delay: 0.8s; }
.familiar-chaos__float--6 { bottom: 32%; left: -8%; --chaos-rot: -9deg; --chaos-dur: 5.6s; --chaos-delay: 0.5s; }
.familiar-chaos__float--8 { bottom: 8%; right: 0%; left: auto; --chaos-rot: -5deg; --chaos-dur: 5s; --chaos-delay: 0.4s; }
.familiar-chaos__float--10 { bottom: 2%; left: -2%; --chaos-rot: -4deg; --chaos-dur: 5.1s; --chaos-delay: 0.9s; }
.familiar-chaos__float--11 { bottom: 0%; left: 44%; --chaos-rot: 3deg; --chaos-dur: 4.9s; --chaos-delay: 0.35s; }

@media (min-width: 1024px) {
  .familiar-layout {
    min-height: 26rem;
    padding: 2rem 0;
  }

  .familiar-chaos {
    inset: -2rem -1.5rem;
  }

  .familiar-chaos__float--1 { top: 6%; left: -6%; }
  .familiar-chaos__float--2 { top: -6%; left: 42%; }
  .familiar-chaos__float--3 { top: 2%; left: 40%; }
  .familiar-chaos__float--4 { top: 0%; right: -2%; left: auto; }
  .familiar-chaos__float--5 { top: 46%; right: -4%; left: auto; }
  .familiar-chaos__float--6 { bottom: 28%; left: -6%; }
  .familiar-chaos__float--8 { bottom: 12%; right: -4%; left: auto; }
  .familiar-chaos__float--10 { bottom: -2%; left: 4%; }
  .familiar-chaos__float--11 { bottom: -4%; left: 48%; }
}

.familiar-chaos__notify {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 11.5rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(38, 38, 46, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.familiar-chaos__notify--call {
  flex-wrap: wrap;
  border-radius: 1rem;
  padding: 0.5rem 0.65rem;
  max-width: 10rem;
}

.familiar-chaos__notify--mail {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  border-radius: 0.875rem;
  max-width: 11rem;
  padding: 0.55rem 0.7rem;
}

.familiar-chaos__notify--mail .familiar-chaos__notify-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.625rem;
  line-height: 1.25;
}

.familiar-chaos__notify--mail .familiar-chaos__notify-text strong {
  font-weight: 700;
  color: #fff;
}

.familiar-chaos__notify--mail .familiar-chaos__notify-text span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.5625rem;
}

.familiar-chaos__notify-text {
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
}

.familiar-chaos__app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
}

.familiar-chaos__app--slack {
  color: #e9eef5;
  background: rgba(255, 255, 255, 0.08);
}

.familiar-chaos__app--gmail {
  background: #fff;
  border-radius: 0.25rem;
}

.familiar-chaos__call-actions {
  display: inline-flex;
  gap: 0.35rem;
  margin-left: auto;
}

.familiar-chaos__call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1;
}

.familiar-chaos__call-btn--decline {
  background: #ef4444;
  color: #fff;
}

.familiar-chaos__call-btn--accept {
  background: #22c55e;
  color: #fff;
}

.familiar-chaos__bubble {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  border-radius: 1rem 1rem 1rem 0.25rem;
  background: #0084ff;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 132, 255, 0.35);
}

.familiar-chaos__file {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.familiar-chaos__file-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 3.25rem;
  border-radius: 0.45rem;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.familiar-chaos__file-icon--pdf {
  background: linear-gradient(180deg, #fff 55%, #ef4444 55%);
  color: #ef4444;
}

.familiar-chaos__file-icon--xls {
  background: linear-gradient(180deg, #fff 55%, #22c55e 55%);
  color: #16a34a;
}

.familiar-chaos__file-icon--doc {
  background: linear-gradient(180deg, #fff 55%, #3b82f6 55%);
  color: #2563eb;
}

.familiar-chaos__file-icon--shot {
  color: #374151;
  background: #fff;
}

.familiar-chaos__file-name {
  max-width: 5.5rem;
  font-size: 0.5625rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.familiar-chaos__wa {
  display: inline-block;
  max-width: 10.5rem;
  filter: drop-shadow(0 4px 14px rgba(15, 15, 26, 0.12));
}

.familiar-chaos__wa-bubble {
  position: relative;
  padding: 0.5rem 0.7rem 0.45rem;
  border-radius: 0.5rem 0.5rem 0.5rem 0.125rem;
  background: #ffffff;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.35;
  color: #111b21;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.08);
}

.familiar-chaos__wa-bubble::after {
  content: '';
  position: absolute;
  left: -5px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent #ffffff transparent;
  filter: drop-shadow(-1px 1px 0 rgba(0, 0, 0, 0.04));
}

.familiar-chaos__mutter {
  font-size: 0.875rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(15, 15, 26, 0.38);
}

.familiar-chaos__face {
  font-size: 2.75rem;
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(15, 15, 26, 0.12));
}

@keyframes familiar-chaos-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(var(--chaos-rot, 0deg));
  }

  50% {
    transform: translate(0, -6px) rotate(calc(var(--chaos-rot, 0deg) + 2deg));
  }
}

.familiar-card--solution .familiar-card__body {
  background: linear-gradient(165deg, #f5f8ff 0%, #e8f0fc 45%, #bfd0ee 100%);
}

.familiar-card__corner {
  position: absolute;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  color: #dc2626;
  opacity: 0.55;
}

.familiar-card__corner--tl {
  top: 0.65rem;
  left: 0.75rem;
}

.familiar-card__corner--br {
  right: 0.75rem;
  bottom: 0.65rem;
  transform: rotate(180deg);
}

.familiar-card__corner--good {
  color: #5b4ec9;
  opacity: 0.7;
}

.familiar-card__suit {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #dc2626;
}

.familiar-card__suit--good {
  color: #5b4ec9;
}

.familiar-card__title {
  margin: 0 0 0.875rem;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f0f1a;
}

.familiar-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.familiar-card__item {
  margin: 0;
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #374151;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0.5rem;
  border: 1px solid rgba(15, 15, 26, 0.05);
}

.familiar-card__item strong {
  font-weight: 700;
  color: #0f0f1a;
}

.familiar-card__item--emphasis {
  font-weight: 700;
  color: #0f0f1a;
}

.familiar-card__item--positive {
  color: #047857;
  background: rgba(255, 255, 255, 0.85);
}

/* Fichas que sobresalen de la tarjeta */
.familiar-card__chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.4rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  color: #374151;
  background: #fff;
  border: 1.5px solid rgba(15, 15, 26, 0.08);
  border-radius: 0.625rem;
  box-shadow: 0 8px 20px rgba(15, 15, 26, 0.12);
  pointer-events: none;
}

.familiar-card__chip svg {
  display: block;
}

.familiar-card__chip--tl {
  top: -0.65rem;
  left: -0.85rem;
  --chip-rot: -14deg;
  animation: familiar-chip-float 5s ease-in-out infinite;
}

.familiar-card__chip--tr {
  top: 1.25rem;
  right: -1.1rem;
  --chip-rot: 10deg;
  animation: familiar-chip-float 4.2s ease-in-out 0.4s infinite;
}

.familiar-card__chip--bl {
  bottom: 2.5rem;
  left: -1.15rem;
  --chip-rot: -8deg;
  animation: familiar-chip-float 4.8s ease-in-out 0.8s infinite;
}

.familiar-card__chip--br {
  right: -0.9rem;
  bottom: -0.55rem;
  --chip-rot: 12deg;
  font-size: 0.6875rem;
  animation: familiar-chip-float 5.2s ease-in-out 1.2s infinite;
}

.familiar-card__chip--good {
  color: #5b4ec9;
  border-color: rgba(124, 106, 247, 0.25);
  box-shadow: 0 8px 24px rgba(124, 106, 247, 0.2);
}

.familiar-card__chip--good img {
  display: block;
  height: 0.9rem;
  width: auto;
}

@keyframes familiar-chip-float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--chip-rot, 0deg));
  }

  50% {
    transform: translateY(-4px) rotate(var(--chip-rot, 0deg));
  }
}

@media (min-width: 640px) {
  .familiar-deck-scene {
    width: min(100%, 24rem);
    padding: 2rem 1.25rem 0.5rem;
  }

  .familiar-card__title {
    font-size: 1.5rem;
  }

  .familiar-chaos__notify-text {
    font-size: 0.6875rem;
  }

  .familiar-chaos__face {
    font-size: 3.25rem;
  }

  .familiar-card__item {
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .familiar-deck .familiar-card {
    transition: opacity 0.2s ease;
    transform: none !important;
  }

  .familiar-card__chip {
    animation: none;
  }

  .familiar-chaos__float {
    animation: none;
  }

  .familiar-card:not(.is-top) {
    opacity: 0;
    pointer-events: none;
  }
}

/* ── Footer CTA ── */
.footer-cta__title {
  font-size: clamp(1.75rem, 5.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
  hanging-punctuation: first allow-all;
}

.footer-cta__subtitle {
  text-wrap: balance;
}

.footer-cta__checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0.625rem 1.25rem;
  margin: calc(1.25rem * 1.3) auto 0;
  padding: 0;
  max-width: 22rem;
  list-style: none;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #e9d5ff;
}

@media (min-width: 640px) {
  .footer-cta__checks {
    max-width: none;
    gap: 0.75rem 1.5rem;
    font-size: 0.8125rem;
  }
}

.footer-cta__check {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.375rem;
  text-align: left;
}

.footer-cta__check-icon {
  flex-shrink: 0;
  margin-top: 0.15em;
  color: #e9d5ff;
}

/* Bloque unificado: CTA + footer legal */
.footer-zone {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      var(--bg-violet-deep) 0%,
      #c2b5f3 12%,
      #b6a7f0 24%,
      #a899ec 38%,
      #9b8ae8 52%,
      #8d7ae4 64%,
      #7c6af7 78%,
      #6254d4 90%,
      #4f46e5 100%
    );
}

.footer-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.footer-cursors {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.footer-cursor {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  will-change: transform;
  filter: drop-shadow(0 2px 10px rgba(15, 15, 26, 0.22));
}

.footer-cursor[hidden] {
  display: none;
}

.footer-cursor__pointer {
  display: block;
  flex-shrink: 0;
  width: 1.625rem;
  height: auto;
  pointer-events: none;
}

.footer-cursor__label {
  align-self: flex-end;
  margin-top: 0.125rem;
  margin-left: 0.35rem;
  padding: 0.3125rem 0.5rem 0.3125rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: right;
  color: #fff;
  background: var(--hc);
  border-radius: 9999px;
  white-space: nowrap;
}

.footer-cta {
  position: relative;
  z-index: 2;
  background: transparent;
}

.footer-cta--with-site-footer {
  padding-top: calc(6rem * 1.3);
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .footer-cta--with-site-footer {
    padding-top: calc(8rem * 1.3);
  }
}

.footer-cta__body {
  display: flex;
  flex-direction: column;
  gap: calc(2rem * 1.3);
}

.footer-cta__body > .reveal.space-y-4,
.footer-cta__body > .space-y-4 {
  display: flex;
  flex-direction: column;
  gap: calc(1rem * 1.3);
}

.site-footer {
  position: relative;
  z-index: 2;
  padding-top: calc(2rem * 1.3);
  padding-bottom: calc(2rem * 1.3);
  background: transparent;
  border-top: none;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
    text-align: left;
  }

  .site-footer__brand {
    justify-self: start;
  }

  .site-footer__product-hunt {
    justify-self: center;
  }

  .site-footer__copy {
    justify-self: end;
    text-align: right;
  }
}

.site-footer__links a {
  color: rgba(233, 213, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.site-footer__copy {
  color: rgba(196, 181, 253, 0.75);
}

.site-footer__copy a {
  color: rgba(233, 213, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__copy a:hover {
  color: #fff;
}

.site-footer__product-hunt {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__product-hunt:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.site-footer__product-hunt img {
  display: block;
  width: 180px;
  max-width: min(180px, 72vw);
  height: auto;
}

.site-logo--on-dark .site-logo__img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-logo--on-dark:hover .site-logo__img {
  opacity: 0.82;
}

/* ── Tres pasos ── */
.steps-section {
  background:
    linear-gradient(180deg, var(--bg-white) 0%, transparent var(--section-fade)),
    var(--bg-warm);
}

.steps-section .section-intro__highlight {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #7c6af7;
  color: #7c6af7;
}

.steps-section .section-intro {
  margin-bottom: 0;
}

.steps-section .section-intro__subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-top: 1rem;
  line-height: 1.3;
}

.steps-section .section-intro__subtitle-line {
  margin-top: 0;
  line-height: 1.3;
}

/* Scroll-driven showcase — tres pasos */
.steps-scrolly {
  position: relative;
  margin-top: 1rem;
}

.steps-scrolly__sticky {
  position: relative;
  z-index: 2;
}

.steps-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(15, 15, 26, 0.06);
  border-radius: 1.5rem;
  box-shadow:
    0 1px 3px rgba(15, 15, 26, 0.05),
    0 20px 50px rgba(124, 106, 247, 0.08);
}

.steps-showcase__copy {
  list-style: none;
  margin: 0;
  padding: 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.steps-showcase__step {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 0.5rem 1rem 1.5rem;
  margin: 0;
  border-left: 3px solid transparent;
  opacity: 0.38;
  transition:
    opacity 0.45s ease,
    border-color 0.45s ease;
}

.steps-showcase__step.is-active {
  opacity: 1;
  border-left-color: #7c6af7;
}

.steps-showcase__num {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #5b4ec9;
  background: #ede9fe;
  border-radius: 0.5rem;
  transition: background 0.45s ease, color 0.45s ease;
}

.steps-showcase__step.is-active .steps-showcase__num {
  color: #fff;
  background: #7c6af7;
}

.steps-showcase__text {
  flex: 1;
  min-width: 0;
}

.steps-showcase__title {
  margin: 0 0 0.375rem;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0f0f1a;
}

.steps-showcase__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #6b7280;
}

.steps-showcase__stage {
  position: relative;
  min-height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
}

.steps-showcase__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease;
  pointer-events: none;
}

.steps-showcase__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.steps-showcase__panel--code {
  padding: 0.75rem;
  background: #0f0f1a;
}

.steps-showcase__panel--widget {
  padding: 0.75rem;
  background: #f0ebe4;
}

.steps-showcase__panel--panel {
  padding: 0.75rem;
  background: #bfd0ee;
}

.steps-scrolly__sentinels {
  position: relative;
  z-index: 1;
}

.steps-scrolly__sentinel {
  height: 50vh;
  min-height: 14rem;
}

@media (min-width: 1024px) {
  .steps-scrolly__sticky {
    position: sticky;
    top: 5.5rem;
  }

  .steps-showcase {
    width: 100%;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 2.5rem;
    align-items: stretch;
    min-height: 26rem;
    padding: 2rem 2.25rem;
  }

  .steps-showcase__copy {
    justify-content: center;
    min-height: 22rem;
    padding: 0 0.5rem 0 0.25rem;
  }

  .steps-showcase__step {
    padding: 1.35rem 0.75rem 1.35rem 1.75rem;
    cursor: pointer;
  }

  .steps-showcase__title {
    font-size: 1.25rem;
  }

  .steps-showcase__stage {
    min-height: 22rem;
  }

  .steps-scrolly__sentinel {
    height: 70vh;
    min-height: 22rem;
  }

  .steps-code-demo,
  .steps-widget-demo,
  .steps-panel-demo {
    min-height: 20rem;
  }
}

@media (max-width: 1023px) {
  .steps-scrolly__sticky {
    position: sticky;
    top: 4.5rem;
  }

  .steps-showcase__step {
    cursor: pointer;
  }

  .steps-scrolly__sentinel {
    height: 42vh;
    min-height: 12rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .steps-showcase__step,
  .steps-showcase__panel,
  .steps-showcase__num {
    transition: none;
  }

  .steps-showcase__panel {
    transform: none;
  }
}

/* Code demo — paso 1 */
.steps-code-demo {
  position: relative;
  flex: 1;
  min-height: 13rem;
  height: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1a28;
}

.steps-code-demo__toolbar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4375rem 0.625rem;
  background: #252538;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.steps-code-demo__traffic {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 9999px;
  background: #4b5563;
}

.steps-code-demo__traffic:nth-child(1) { background: #fca5a5; }
.steps-code-demo__traffic:nth-child(2) { background: #fcd34d; }
.steps-code-demo__traffic:nth-child(3) { background: #86efac; }

.steps-code-demo__file {
  margin-left: 0.25rem;
  font-size: 0.5625rem;
  font-weight: 500;
  color: #9ca3af;
}

.steps-code-demo__body {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0.75rem 0.625rem;
}

.steps-code-demo__row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.375rem 0.5rem;
  border-radius: 0.375rem;
  animation: steps-code-row-glow 7s ease-in-out infinite;
}

.steps-code-demo__ln {
  flex-shrink: 0;
  font-size: 0.5625rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #4b5563;
  line-height: 1.5;
}

.steps-code-demo__code {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  font-size: 0.5625rem;
  line-height: 1.5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #6ee7b7;
}

.steps-code-demo__typed {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  animation: steps-code-type 7s steps(52, end) infinite;
}

.steps-code-demo__caret {
  display: inline-block;
  width: 1px;
  height: 0.625rem;
  margin-left: 1px;
  background: #6ee7b7;
  vertical-align: middle;
  animation: steps-code-caret 0.7s step-end infinite;
}

.steps-code-demo__toast {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  padding: 0.3125rem 0.625rem;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(110, 231, 183, 0.35);
  border-radius: 0.375rem;
  animation: steps-code-toast 7s ease-in-out infinite;
}

@keyframes steps-code-type {
  0%, 8% { width: 0; }
  48%, 62% { width: 100%; }
  70%, 100% { width: 0; }
}

@keyframes steps-code-caret {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes steps-code-row-glow {
  0%, 46% { background: transparent; }
  50%, 62% { background: rgba(124, 106, 247, 0.12); }
  66%, 100% { background: transparent; }
}

@keyframes steps-code-toast {
  0%, 52% {
    opacity: 0;
    transform: translateY(4px) scale(0.95);
  }
  56%, 66% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  72%, 100% {
    opacity: 0;
    transform: translateY(4px) scale(0.95);
  }
}

/* Widget demo — paso 2 */
.steps-widget-demo {
  position: relative;
  flex: 1;
  min-height: 13rem;
  height: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 15, 26, 0.06);
  box-shadow: 0 2px 10px rgba(15, 15, 26, 0.06);
}

.steps-widget-demo__chrome {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4375rem 0.625rem;
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}

.steps-widget-demo__dot {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 9999px;
  background: #e5e7eb;
}

.steps-widget-demo__dot:nth-child(1) { background: #fca5a5; }
.steps-widget-demo__dot:nth-child(2) { background: #fcd34d; }
.steps-widget-demo__dot:nth-child(3) { background: #86efac; }

.steps-widget-demo__url {
  flex: 1;
  margin-left: 0.25rem;
  font-size: 0.5625rem;
  font-weight: 500;
  color: #9ca3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.steps-widget-demo__viewport {
  position: relative;
  flex: 1;
  min-height: 6.5rem;
  padding: 0.625rem 0.75rem;
  background: #fff;
}

.steps-widget-demo__page {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.steps-widget-demo__line {
  display: block;
  height: 0.375rem;
  width: 72%;
  background: #f3f4f6;
  border-radius: 0.25rem;
}

.steps-widget-demo__line--lg {
  width: 88%;
  height: 0.5rem;
}

.steps-widget-demo__line--sm {
  width: 48%;
}

.steps-widget-demo__pin {
  position: absolute;
  top: 2.25rem;
  left: 3.5rem;
  width: 0.875rem;
  height: 0.875rem;
  background: #7c6af7;
  border: 2px solid #fff;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(124, 106, 247, 0.4);
  animation: steps-widget-pin 7s ease-in-out infinite;
}

.steps-widget-demo__pin::before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(124, 106, 247, 0.35);
  border-radius: 9999px;
  animation: steps-widget-pin-ring 7s ease-out infinite;
}

@keyframes steps-widget-pin-ring {
  0%, 20% {
    opacity: 0;
    transform: scale(0.6);
  }
  24% {
    opacity: 1;
    transform: scale(1);
  }
  32%, 100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.steps-widget-demo__fab {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: #fff;
  background: #7c6af7;
  border: 2px solid #fff;
  border-radius: 9999px;
  box-shadow: 0 3px 12px rgba(124, 106, 247, 0.4);
  cursor: var(--cursor-arrow);
  animation: steps-widget-fab 7s ease-in-out infinite;
}

.steps-widget-demo__fab::before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(124, 106, 247, 0.45);
  border-radius: 9999px;
  animation: steps-widget-ripple 7s ease-out infinite;
}

.steps-widget-demo__popover {
  position: absolute;
  bottom: 2.75rem;
  left: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  padding: 0.625rem 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.625rem;
  box-shadow: 0 8px 24px rgba(15, 15, 26, 0.12);
  animation: steps-widget-popover 7s ease-in-out infinite;
}

.steps-widget-demo__popover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 1.125rem;
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  transform: rotate(45deg);
}

.steps-widget-demo__popover-title {
  margin: 0 0 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: #0f0f1a;
}

.steps-widget-demo__field {
  display: flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.375rem 0.5rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  overflow: hidden;
}

.steps-widget-demo__typed {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.5625rem;
  font-weight: 500;
  color: #374151;
  animation: steps-widget-type 7s steps(26, end) infinite;
}

.steps-widget-demo__caret {
  display: inline-block;
  width: 1px;
  height: 0.625rem;
  margin-left: 1px;
  background: #7c6af7;
  vertical-align: middle;
  animation: steps-widget-caret 0.8s step-end infinite;
}

.steps-widget-demo__send {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 0.3125rem 0.625rem;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #fff;
  background: #7c6af7;
  border-radius: 0.375rem;
  animation: steps-widget-send 7s ease-in-out infinite;
}

@keyframes steps-widget-ripple {
  0%, 12% {
    opacity: 0;
    transform: scale(0.85);
  }
  14% {
    opacity: 1;
    transform: scale(1);
  }
  20%, 100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes steps-widget-fab {
  0%, 14% {
    transform: scale(1);
    box-shadow: 0 3px 12px rgba(124, 106, 247, 0.4);
  }
  16% {
    transform: scale(0.88);
  }
  18%, 68% {
    transform: scale(0.92);
    box-shadow: 0 2px 8px rgba(124, 106, 247, 0.25);
  }
  74%, 100% {
    transform: scale(1);
    box-shadow: 0 3px 12px rgba(124, 106, 247, 0.4);
  }
}

@keyframes steps-widget-popover {
  0%, 16% {
    opacity: 0;
    transform: translateY(8px) scale(0.95);
    visibility: hidden;
  }
  20%, 68% {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
  }
  74%, 100% {
    opacity: 0;
    transform: translateY(6px) scale(0.97);
    visibility: hidden;
  }
}

@keyframes steps-widget-pin {
  0%, 18% {
    opacity: 0;
    transform: scale(0);
  }
  22%, 66% {
    opacity: 1;
    transform: scale(1);
  }
  72%, 100% {
    opacity: 0;
    transform: scale(0);
  }
}

@keyframes steps-widget-type {
  0%, 26% { width: 0; }
  52%, 66% { width: 100%; }
  72%, 100% { width: 0; }
}

@keyframes steps-widget-caret {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes steps-widget-send {
  0%, 54% {
    background: #7c6af7;
    transform: scale(1);
  }
  58%, 62% {
    background: #6254d4;
    transform: scale(1.04);
  }
  66%, 100% {
    background: #7c6af7;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .steps-widget-demo__fab,
  .steps-widget-demo__fab::before,
  .steps-widget-demo__popover,
  .steps-widget-demo__pin,
  .steps-widget-demo__typed,
  .steps-widget-demo__caret,
  .steps-widget-demo__send {
    animation: none;
  }

  .steps-widget-demo__popover {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .steps-widget-demo__typed {
    width: 100%;
  }

  .steps-widget-demo__pin {
    opacity: 1;
    transform: scale(1);
  }
}

/* Panel demo — paso 3 */
.steps-panel-demo {
  position: relative;
  flex: 1;
  min-height: 13rem;
  height: 100%;
  padding: 0.625rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.steps-panel-demo__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0 0.125rem;
}

.steps-panel-demo__title {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4b5563;
}

.steps-panel-demo__badge {
  padding: 0.125rem 0.375rem;
  font-size: 0.5rem;
  font-weight: 700;
  color: #5b4ec9;
  background: #fff;
  border-radius: 0.25rem;
}

.steps-panel-demo__card {
  padding: 0.5rem 0.625rem;
  background: #fff;
  border: 1px solid rgba(15, 15, 26, 0.05);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(15, 15, 26, 0.06);
}

.steps-panel-demo__card--primary {
  position: relative;
  z-index: 2;
  animation: steps-panel-card-primary 7s ease-in-out infinite;
}

.steps-panel-demo__card--secondary {
  position: absolute;
  left: 0.625rem;
  right: 0.625rem;
  bottom: 0.625rem;
  z-index: 1;
  animation: steps-panel-card-secondary 7s ease-in-out infinite;
}

.steps-panel-demo__card-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}

.steps-panel-demo__status {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  font-size: 0.5rem;
  font-weight: 700;
  border-radius: 0.25rem;
  animation: steps-panel-status 7s ease-in-out infinite;
}

.steps-panel-demo__status--new {
  color: #d97706;
  background: #fef3c7;
}

.steps-panel-demo__card-title {
  flex: 1;
  min-width: 0;
  font-size: 0.625rem;
  font-weight: 600;
  color: #0f0f1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: steps-panel-title 7s ease-in-out infinite;
}

.steps-panel-demo__tag {
  flex-shrink: 0;
  padding: 0.125rem 0.375rem;
  font-size: 0.5rem;
  font-weight: 700;
  border-radius: 0.25rem;
}

.steps-panel-demo__tag--new {
  color: #d97706;
  background: #fef3c7;
}

.steps-panel-demo__meta {
  display: block;
  font-size: 0.5rem;
  color: #9ca3af;
  animation: steps-panel-meta 7s ease-in-out infinite;
}

.steps-panel-demo__resolve {
  display: inline-flex;
  margin-top: 0.375rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.5rem;
  font-weight: 700;
  color: #fff;
  background: #10b981;
  border-radius: 0.3125rem;
  animation: steps-panel-resolve 7s ease-in-out infinite;
}

@keyframes steps-panel-card-primary {
  0%, 10% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  14%, 58% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  64%, 100% {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
}

@keyframes steps-panel-card-secondary {
  0%, 48% {
    opacity: 0;
    transform: translateY(16px);
  }
  54%, 72% {
    opacity: 1;
    transform: translateY(0);
  }
  78%, 100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes steps-panel-status {
  0%, 34% {
    color: #d97706;
    background: #fef3c7;
  }
  36%, 58% {
    color: #047857;
    background: #d1fae5;
  }
  60%, 100% {
    color: #d97706;
    background: #fef3c7;
  }
}

@keyframes steps-panel-title {
  0%, 34% { color: #0f0f1a; }
  36%, 58% { color: #047857; }
  60%, 100% { color: #0f0f1a; }
}

.steps-panel-demo__tag--new {
  animation: steps-panel-tag-new 7s ease-in-out infinite;
}

.steps-panel-demo__tag--done {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  color: #047857;
  background: #d1fae5;
  animation: steps-panel-tag-done 7s ease-in-out infinite;
}

@keyframes steps-panel-tag-new {
  0%, 34% { opacity: 1; }
  36%, 100% { opacity: 0; }
}

@keyframes steps-panel-tag-done {
  0%, 34% { opacity: 0; }
  36%, 58% { opacity: 1; }
  60%, 100% { opacity: 0; }
}

@keyframes steps-panel-meta {
  0%, 22% { opacity: 0; }
  26%, 58% { opacity: 1; }
  62%, 100% { opacity: 0; }
}

@keyframes steps-panel-resolve {
  0%, 28% {
    opacity: 0;
    transform: scale(0.9);
  }
  32%, 34% {
    opacity: 1;
    transform: scale(1);
  }
  36%, 38% {
    opacity: 1;
    transform: scale(1.06);
    background: #059669;
  }
  42%, 58% {
    opacity: 1;
    transform: scale(1);
    background: #10b981;
  }
  62%, 100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

.steps-panel-demo__card--primary .steps-panel-demo__status--new::before {
  font-size: 0.5rem;
  line-height: 1;
  animation: steps-panel-status-icon 7s ease-in-out infinite;
}

@keyframes steps-panel-status-icon {
  0%, 34% { content: '●'; }
  36%, 58% { content: '✓'; }
  60%, 100% { content: '●'; }
}

@media (prefers-reduced-motion: reduce) {
  .steps-code-demo__typed,
  .steps-code-demo__caret,
  .steps-code-demo__toast,
  .steps-code-demo__row,
  .steps-panel-demo__card--primary,
  .steps-panel-demo__card--secondary,
  .steps-panel-demo__status,
  .steps-panel-demo__status--new::before,
  .steps-panel-demo__card-title,
  .steps-panel-demo__tag--new,
  .steps-panel-demo__tag--done,
  .steps-panel-demo__meta,
  .steps-panel-demo__resolve {
    animation: none;
  }

  .steps-code-demo__typed {
    width: 100%;
  }

  .steps-code-demo__toast {
    opacity: 1;
    transform: none;
  }

  .steps-panel-demo__card--primary,
  .steps-panel-demo__card--secondary {
    opacity: 1;
    transform: none;
  }

  .steps-panel-demo__card--secondary {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0.5rem;
  }

  .steps-panel-demo__resolve {
    opacity: 1;
    transform: none;
  }

  .steps-panel-demo__meta {
    opacity: 1;
  }
}

/* ── Features stack ── */
.features-section {
  position: relative;
  background:
    linear-gradient(180deg, var(--bg-white) 0%, transparent var(--section-fade)),
    var(--bg-cream);
  overflow-x: clip;
  overflow-y: visible;
}

.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 15, 26, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.features-section > .max-w-6xl {
  position: relative;
  z-index: 1;
}

.features-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 0;
}

@media (min-width: 1024px) {
  .features-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 4rem;
    align-items: start;
  }
}

.features-intro {
  margin-bottom: 0;
}

.features-intro__highlight {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #7c6af7;
  color: #7c6af7;
}

@media (min-width: 1024px) {
  .features-intro {
    text-align: left;
    margin: 0;
    max-width: none;
    position: sticky;
    top: 6rem;
  }

  .features-intro .section-intro__subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

.features-intro__scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  background: #fff;
  border: 1px solid rgba(15, 15, 26, 0.08);
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(15, 15, 26, 0.05);
  animation: features-scroll-hint 2s ease-in-out infinite;
}

.features-intro__scroll-hint svg {
  color: #7c6af7;
}

@keyframes features-scroll-hint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.features-stack {
  position: relative;
  min-width: 0;
  --features-sticky-1: 5.5rem;
  --features-sticky-2: 6.25rem;
  --features-sticky-3: 7rem;
}

.features-stack__slot {
  position: relative;
}

.features-stack__slot + .features-stack__slot {
  margin-top: 1.25rem;
}

@media (max-width: 1023px) {
  .features-stack__slot--1,
  .features-stack__slot--2,
  .features-stack__slot--3 {
    min-height: auto;
  }

  .features-stack__card {
    position: relative;
    top: auto;
  }
}

@media (min-width: 1024px) {
  .features-stack__slot--1 {
    min-height: 62vh;
  }

  .features-stack__slot--2 {
    min-height: 62vh;
  }

  .features-stack__slot--3 {
    min-height: 42vh;
    padding-bottom: 10vh;
  }

  .features-stack__slot + .features-stack__slot {
    margin-top: 0;
  }
}

.features-stack__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: none;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15, 15, 26, 0.04),
    0 8px 32px rgba(15, 15, 26, 0.08);
  transform-origin: center top;
  transition:
    box-shadow 0.3s ease,
    transform 0.35s ease,
    opacity 0.35s ease;
}

@media (min-width: 1024px) {
  .features-stack__card {
    position: sticky;
  }

  .features-stack__card.is-covered {
    transform: scale(0.965);
    opacity: 0.88;
    box-shadow:
      0 1px 2px rgba(15, 15, 26, 0.03),
      0 4px 16px rgba(15, 15, 26, 0.05);
  }

  .features-stack__card.is-stuck:not(.is-covered) {
    transform: scale(1);
    opacity: 1;
  }
}

@media (hover: hover) {
  .features-stack__card:not(.is-covered):hover {
    box-shadow:
      0 2px 4px rgba(15, 15, 26, 0.05),
      0 16px 48px rgba(15, 15, 26, 0.1);
  }
}

.features-stack__card--1 {
  z-index: 1;
}

.features-stack__card--2 {
  z-index: 2;
}

.features-stack__card--3 {
  z-index: 3;
}

@media (min-width: 1024px) {
  .features-stack__card--1 { top: var(--features-sticky-1); }
  .features-stack__card--2 { top: var(--features-sticky-2); }
  .features-stack__card--3 { top: var(--features-sticky-3); }
}

.features-stack__watermark {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: clamp(3.5rem, 10vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #0f0f1a;
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
}

.features-stack__card-inner {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.5rem 1.25rem;
}

.features-stack__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.125rem;
}

.features-stack__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(15, 15, 26, 0.05);
  box-shadow: 0 2px 6px rgba(15, 15, 26, 0.05);
}

.features-stack__icon-svg {
  width: 1.375rem;
  height: 1.375rem;
}

.features-stack__icon--purple {
  color: #7c6af7;
  background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
}

.features-stack__icon--blue {
  color: #3b82f6;
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
}

.features-stack__icon--green {
  color: #10b981;
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}

.features-stack__pill {
  margin-left: auto;
  padding: 0.3125rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5b4ec9;
  background: #f5f3ff;
  border: 1px solid #ede9fe;
  border-radius: 9999px;
}

.features-stack__pill--blue {
  color: #3b5a8a;
  background: #e8f0fc;
  border-color: #bfd0ee;
}

.features-stack__pill--green {
  color: #047857;
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.features-stack__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #0f0f1a;
}

.features-stack__text {
  margin: 0 0 1.375rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #6b7280;
  max-width: 36ch;
}

.features-stack__visual {
  border-radius: 0.875rem;
  overflow: hidden;
}

.features-stack__visual--chips {
  padding: 1rem 1.125rem;
  background: #faf9f7;
  border: 1px solid rgba(15, 15, 26, 0.06);
}

.features-stack__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.features-stack__flow-arrow {
  font-size: 0.875rem;
  font-weight: 700;
  color: #d1d5db;
}

.features-stack__chip {
  padding: 0.5rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(15, 15, 26, 0.04);
}

.features-stack__chip--accent {
  color: #fff;
  background: #7c6af7;
  border-color: #7c6af7;
  box-shadow: 0 4px 12px rgba(124, 106, 247, 0.3);
}

.features-stack__visual--capture {
  padding: 0;
  background: #fff;
  border: 1px solid rgba(15, 15, 26, 0.06);
}

.features-stack__capture {
  position: relative;
  height: 5.5rem;
  background: #bfd0ee;
  border-bottom: 1px solid rgba(15, 15, 26, 0.06);
}

.features-stack__capture::before {
  content: '';
  position: absolute;
  inset: 0.75rem 1rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid rgba(15, 15, 26, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.features-stack__capture::after {
  content: '';
  position: absolute;
  top: 1.35rem;
  left: 1.5rem;
  right: 1.5rem;
  height: 0.25rem;
  background: #f3f4f6;
  border-radius: 0.125rem;
  box-shadow: 0 0.5rem 0 0 #f3f4f6, 0 1rem 0 0 #f9fafb;
}

.features-stack__capture-pin {
  position: absolute;
  top: 2.25rem;
  left: 2.5rem;
  z-index: 1;
  width: 0.875rem;
  height: 0.875rem;
  background: #7c6af7;
  border: 2px solid #fff;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(124, 106, 247, 0.4);
}

.features-stack__capture-label {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.5rem;
  font-size: 0.5625rem;
  font-weight: 600;
  color: #4b5563;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.25rem;
  white-space: nowrap;
}

.features-stack__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  background: #f9fafb;
}

.features-stack__meta-tag {
  padding: 0.375rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #5b4ec9;
  background: #fff;
  border: 1px solid #ede9fe;
  border-radius: 0.375rem;
}

.features-stack__visual--kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.875rem;
  background: #faf9f7;
  border: 1px solid rgba(15, 15, 26, 0.06);
}

.features-stack__kanban-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.features-stack__kanban-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  text-align: center;
}

.features-stack__kanban-card {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(15, 15, 26, 0.04);
}

.features-stack__kanban-card--active {
  border-color: #fcd34d;
  background: #fffbeb;
}

.features-stack__kanban-card--done {
  border-color: #bbf7d0;
  background: #ecfdf5;
}

.features-stack__kanban-dot {
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.25rem;
  border-radius: 9999px;
  background: #fbbf24;
}

.features-stack__kanban-dot--active {
  background: #f59e0b;
}

.features-stack__kanban-dot--done {
  background: #10b981;
}

.features-stack__kanban-text {
  font-size: 0.5625rem;
  font-weight: 600;
  line-height: 1.35;
  color: #374151;
}

.features-stack__kanban-card--done .features-stack__kanban-text {
  color: #047857;
}

@media (prefers-reduced-motion: reduce) {
  .features-intro__scroll-hint {
    animation: none;
  }
}

/* ── Pricing ── */
.pricing-section {
  background:
    linear-gradient(180deg, var(--bg-cream) 0%, transparent var(--section-fade)),
    var(--bg-warm);
}

.pricing-grid {
  position: relative;
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card--soon {
  filter: blur(7px);
  opacity: 0.72;
  pointer-events: none;
  user-select: none;
}

.pricing-card--soon .pricing-card__price--placeholder {
  min-height: 3.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 15, 26, 0.06);
  background: linear-gradient(90deg, #ececef 0%, #f4f4f6 50%, #ececef 100%);
  border-radius: 0.5rem;
}

.pricing-soon-label {
  display: none;
  pointer-events: none;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .pricing-soon-label {
    display: block;
    position: absolute;
    top: 50%;
    left: calc(50% + 16.666%);
    z-index: 10;
    transform: translate(-50%, -50%);
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #9488f9 0%, #7c6af7 42%, #6254d4 100%);
    border-radius: 9999px;
    box-shadow:
      0 4px 14px rgba(124, 106, 247, 0.35),
      0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  }
}

@media (max-width: 767px) {
  .pricing-soon-label {
    display: block;
    position: absolute;
    top: 58%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #9488f9 0%, #7c6af7 42%, #6254d4 100%);
    border-radius: 9999px;
    box-shadow:
      0 4px 14px rgba(124, 106, 247, 0.35),
      0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  }
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;
  background: #fff;
  border: 1.5px solid rgba(15, 15, 26, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 2px 12px rgba(15, 15, 26, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  border-color: rgba(124, 106, 247, 0.25);
  box-shadow: 0 8px 28px rgba(124, 106, 247, 0.1);
}

.pricing-card--featured {
  border-width: 0;
  isolation: isolate;
  box-shadow: 0 12px 40px rgba(124, 106, 247, 0.18);
}

@property --pricing-border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: 0;
  border-radius: calc(1.25rem + 2px);
  padding: 2px;
  background: conic-gradient(
    from var(--pricing-border-angle),
    #7c6af7,
    #60a5fa,
    #a78bfa,
    #818cf8,
    #7c6af7
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: pricing-border-spin 3.5s linear infinite;
  pointer-events: none;
}

.pricing-card--featured > * {
  position: relative;
  z-index: 1;
}

.pricing-card--featured:hover {
  box-shadow: 0 16px 48px rgba(124, 106, 247, 0.26);
}

@keyframes pricing-border-spin {
  to {
    --pricing-border-angle: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card--featured::before {
    animation: none;
    background: #7c6af7;
  }
}

.pricing-card__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #7c6af7;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-card__head {
  margin-bottom: 1.25rem;
}

.pricing-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f0f1a;
}

.pricing-card__tagline {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #6b7280;
}

.pricing-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 15, 26, 0.06);
}

.pricing-card__amount {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f0f1a;
  line-height: 1.1;
}

.pricing-card__currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: #6b7280;
  vertical-align: super;
  line-height: 0;
  margin-right: 0.1rem;
}

.pricing-card__period {
  font-size: 0.875rem;
  font-weight: 500;
  color: #9ca3af;
}

.pricing-card__projects {
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: #374151;
}

.pricing-card__projects strong {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0f0f1a;
}

.pricing-card__features {
  flex: 1;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pricing-card__features li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #4b5563;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.25);
}

.pricing-card--featured .pricing-card__features li::before {
  background: #7c6af7;
  box-shadow: 0 0 0 2px rgba(124, 106, 247, 0.25);
}

.pricing-card__cta {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #9ca3af;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── FAQ ── */
.faq-section {
  background:
    linear-gradient(180deg, var(--bg-warm) 0%, transparent var(--section-fade)),
    linear-gradient(
      180deg,
      var(--bg-violet-soft) 0%,
      var(--bg-violet-mid) 28%,
      #e4dcfb 48%,
      var(--bg-violet-end) 68%,
      var(--bg-violet-bridge) 84%,
      var(--bg-violet-deep) 100%
    );
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.75fr);
    gap: 4rem;
  }
}

.faq-side {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.faq-side__title {
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0f0f1a;
}

.faq-side__lead {
  margin-top: 1rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #6b7280;
  max-width: 16rem;
}

.faq-side__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
  padding-top: 3rem;
}

@media (max-width: 1023px) {
  .faq-side__cta {
    margin-top: 2rem;
    padding-top: 0;
  }
}

.faq-side__cta-title {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f0f1a;
}

.faq-side__cta-text {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  max-width: 14rem;
}

.faq-side__cta .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

.faq-list__inner {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(124, 106, 247, 0.1);
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px rgba(124, 106, 247, 0.06);
}

.faq-item {
  background: #fff;
  border-radius: 0.875rem;
  border: 1px solid rgba(15, 15, 26, 0.05);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item--open {
  box-shadow: 0 2px 12px rgba(15, 15, 26, 0.06);
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.125rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  color: #0f0f1a;
  background: transparent;
  border: none;
  cursor: var(--cursor-arrow);
  transition: background 0.15s ease;
}

.faq-item__trigger:hover {
  background: #fafafa;
}

.faq-item__chevron {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.25s ease, color 0.2s ease;
}

.faq-item__chevron--open {
  transform: rotate(180deg);
  color: #7c6af7;
}

.faq-item__answer {
  padding: 0 1.25rem 1.125rem;
}

.faq-item__answer p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6b7280;
}

/* ── Collab diagram ── */
.collab-section {
  background:
    linear-gradient(180deg, var(--bg-neutral) 0%, transparent var(--section-fade)),
    linear-gradient(180deg, var(--bg-neutral) 0%, var(--bg-white) 100%);
}

.familiar-section {
  overflow: visible;
  background:
    linear-gradient(180deg, var(--bg-warm) 0%, transparent var(--section-fade)),
    var(--bg-white);
}

.collab-section .section-intro__highlight {
  background: linear-gradient(135deg, #7c6af7 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.collab-stage {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  min-height: 30rem;
  padding: 1rem 0 0;
}

.collab-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.collab-line {
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.55;
}

.collab-line--qa { stroke: #fbbf24; }
.collab-line--design { stroke: #4ade80; }
.collab-line--dev { stroke: #a78bfa; }
.collab-line--client { stroke: #8b5cf6; }
.collab-line--pm { stroke: #60a5fa; }
.collab-line--user { stroke: #a3e635; }

.collab-role {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.collab-role--qa { top: 8%; left: 0; flex-direction: row; }
.collab-role--design { top: 42%; left: -2%; flex-direction: row; }
.collab-role--dev { bottom: 8%; left: 0; flex-direction: row; }

.collab-role--client { top: 8%; right: 0; flex-direction: row-reverse; }
.collab-role--pm { top: 42%; right: -2%; flex-direction: row-reverse; }
.collab-role--user { bottom: 8%; right: 0; flex-direction: row-reverse; }

.collab-role__avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(15, 15, 26, 0.12);
  flex-shrink: 0;
}

.collab-role__label {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f0f1a;
  background: var(--role-bg);
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(15, 15, 26, 0.06);
}

.collab-browser {
  position: relative;
  z-index: 1;
  width: min(100%, 27rem);
  margin: 0 auto;
  background: #fff;
  border-radius: 1.125rem;
  border: 1px solid rgba(15, 15, 26, 0.08);
  box-shadow:
    0 4px 6px rgba(15, 15, 26, 0.04),
    0 20px 48px rgba(15, 15, 26, 0.1);
  overflow: hidden;
  animation: collab-float 5s ease-in-out infinite;
}

@keyframes collab-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

.collab-browser__chrome {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.625rem 0.875rem;
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}

.collab-browser__dot {
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 9999px;
  background: #e5e7eb;
}

.collab-browser__dot:nth-child(1) { background: #fca5a5; }
.collab-browser__dot:nth-child(2) { background: #fcd34d; }
.collab-browser__dot:nth-child(3) { background: #86efac; }

.collab-browser__url {
  flex: 1;
  margin-left: 0.25rem;
  padding: 0.3125rem 0.5625rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #9ca3af;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.collab-browser__menu {
  font-size: 0.75rem;
  font-weight: 700;
  color: #d1d5db;
  letter-spacing: 0.05em;
}

.collab-browser__viewport {
  position: relative;
  padding: 1.25rem 1.25rem 3.5rem;
  background: #fff;
}

.collab-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 1.125rem;
  align-items: center;
}

.collab-product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 0.5rem;
}

.collab-product__image svg {
  width: 4.25rem;
  height: auto;
}

.collab-product__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.875rem;
  min-height: 100%;
}

.collab-product__copy {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.collab-product__lines {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.4375rem;
  min-width: 0;
}

.collab-product__line {
  display: block;
  height: 0.4375rem;
  width: 100%;
  background: #f3f4f6;
  border-radius: 0.25rem;
}

.collab-product__line--lg {
  width: 100%;
  height: 0.5625rem;
}

.collab-product__line--sm {
  width: 62%;
}

.collab-product__price {
  flex-shrink: 0;
  padding-top: 0.125rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: #d1d5db;
  letter-spacing: 0.08em;
  line-height: 1;
}

.collab-product__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  width: fit-content;
}

.collab-product__buy {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #4ade80;
  border: none;
  border-radius: 0.375rem;
  cursor: var(--cursor-arrow);
  line-height: 1;
}

.collab-annotation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0.75rem;
  pointer-events: none;
}

.collab-annotation__text {
  display: block;
  font-family: 'Caveat', 'Segoe Print', 'Comic Sans MS', cursive;
  font-size: 1rem;
  font-weight: 700;
  color: #ef4444;
  line-height: 1.05;
  white-space: nowrap;
  transform: rotate(-3deg);
}

.collab-annotation__arrow {
  width: 2.5rem;
  height: auto;
  margin: 0.125rem 0 0 2.75rem;
  display: block;
}

.collab-browser__fab {
  position: absolute;
  bottom: 0.875rem;
  right: 0.875rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.4375rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  background: #7c6af7;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(124, 106, 247, 0.35);
  cursor: var(--cursor-arrow);
}

.collab-roles-mobile {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.collab-chip {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f0f1a;
  background: var(--role-bg);
  border-radius: 9999px;
}

@media (max-width: 767px) {
  .collab-stage {
    min-height: auto;
    padding-top: 0;
  }

  .collab-lines,
  .collab-role {
    display: none;
  }

  .collab-roles-mobile {
    display: flex;
  }

  .collab-browser {
    width: min(100%, 23rem);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .collab-stage {
    min-height: 24rem;
  }

  .collab-role__avatar {
    width: 2.75rem;
    height: 2.75rem;
  }

  .collab-role__label {
    font-size: 0.6875rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (min-width: 1024px) {
  .collab-stage {
    min-height: 36rem;
  }

  .collab-browser {
    width: 30rem;
  }

  .collab-role__avatar {
    width: 3.5rem;
    height: 3.5rem;
  }
}

/* ── Demo: doble click → feedback ── */
.feedback-demo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 45;
  pointer-events: none;
  overflow: visible;
}

.feedback-demo__pin {
  position: fixed;
  z-index: 1;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: translate(-4px, -4px);
}

.feedback-demo__pin-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7c6af7;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 10px rgba(124, 106, 247, 0.5);
}

.feedback-demo__pin-ring {
  position: absolute;
  left: -7px;
  top: -7px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(124, 106, 247, 0.55);
  animation: feedback-demo-pin-ring 1.8s ease-out infinite;
}

.feedback-demo__pin--sent .feedback-demo__pin-dot {
  background: #10b981;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.45);
}

.feedback-demo__pin--sent .feedback-demo__pin-ring {
  border-color: rgba(16, 185, 129, 0.5);
  animation: none;
  opacity: 0;
}

.feedback-demo__pin--remnant .feedback-demo__pin-ring {
  display: none;
}

.feedback-demo__pin--remnant {
  position: absolute;
  transform: translate(-7px, -7px);
  pointer-events: auto;
  cursor: var(--cursor-arrow);
}

.feedback-demo__pin--remnant::before {
  content: '';
  position: absolute;
  left: -10px;
  top: -10px;
  width: 34px;
  height: 34px;
}

.feedback-demo__pin--remnant .feedback-demo__pin-dot {
  background: #7c6af7;
  box-shadow: 0 2px 10px rgba(124, 106, 247, 0.45);
}

.feedback-demo__remnant-tip {
  position: absolute;
  left: 7px;
  top: 0;
  z-index: 2;
  width: max-content;
  max-width: min(16rem, calc(100vw - 2rem));
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: #0f0f1a;
  text-align: center;
  white-space: normal;
  background: #fff;
  border: 1px solid rgba(15, 15, 26, 0.08);
  border-radius: 0.625rem;
  box-shadow:
    0 4px 6px rgba(15, 15, 26, 0.05),
    0 12px 28px rgba(15, 15, 26, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 0.625rem)) translateY(4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.feedback-demo__remnant-tip::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 1px solid rgba(15, 15, 26, 0.08);
  border-bottom: 1px solid rgba(15, 15, 26, 0.08);
  transform: translateX(-50%) rotate(45deg);
}

.feedback-demo__pin--remnant:hover .feedback-demo__remnant-tip,
.feedback-demo__pin--remnant:focus-visible .feedback-demo__remnant-tip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, calc(-100% - 0.625rem)) translateY(0);
}

.feedback-demo__pin--fade-out .feedback-demo__remnant-tip {
  opacity: 0;
  visibility: hidden;
}

.feedback-demo__pin--fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feedback-demo__pin--fade-out .feedback-demo__pin-dot {
  transform: scale(0.75);
  transition: transform 0.5s ease;
}

@keyframes feedback-demo-pin-ring {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}

.feedback-demo__popover {
  position: fixed;
  z-index: 2;
  width: min(18rem, calc(100vw - 1.5rem));
  padding: 0.875rem 1rem 1rem;
  background: #fff;
  border: 1px solid rgba(15, 15, 26, 0.08);
  border-radius: 0.875rem;
  box-shadow:
    0 4px 6px rgba(15, 15, 26, 0.04),
    0 20px 40px rgba(15, 15, 26, 0.14);
  pointer-events: auto;
  animation: feedback-demo-pop-in 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes feedback-demo-pop-in {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.feedback-demo__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  color: #9ca3af;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: var(--cursor-arrow);
  transition: color 0.15s ease, background 0.15s ease;
}

.feedback-demo__close:hover {
  color: #0f0f1a;
  background: #f3f4f6;
}

.feedback-demo__meta {
  margin: 0 1.5rem 0.5rem 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
}

.feedback-demo__input {
  display: block;
  width: 100%;
  margin: 0 0 0.75rem;
  padding: 0.625rem 0.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #0f0f1a;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  resize: vertical;
  min-height: 4.5rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.feedback-demo__input:focus {
  outline: none;
  border-color: #a78bfa;
  box-shadow: 0 0 0 3px rgba(124, 106, 247, 0.2);
  background: #fff;
}

.feedback-demo__input--shake {
  animation: feedback-demo-shake 0.35s ease;
}

@keyframes feedback-demo-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.feedback-demo__actions {
  display: flex;
  justify-content: flex-end;
}

.feedback-demo__success {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #047857;
  line-height: 1.4;
}

.feedback-demo__hint {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  z-index: 44;
  max-width: min(20rem, calc(100vw - 2rem));
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: rgba(15, 15, 26, 0.88);
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(15, 15, 26, 0.2);
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.feedback-demo__hint--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 767px) {
  .feedback-demo__hint {
    bottom: 6.5rem;
    font-size: 0.75rem;
  }
}

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

  .feedback-demo__pin-ring {
    animation: none;
    opacity: 0;
  }
}

/* ── Page loader (splash + cortina) ── */
html.is-loading,
html.is-loading body {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: all;
}

.page-loader__curtain {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ebe4;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-loader__curtain::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 106, 247, 0.22) 50%,
    transparent
  );
  opacity: 0.85;
  transition: opacity 0.35s ease;
}

.page-loader__logo {
  display: block;
  width: clamp(8.5rem, 32vw, 11.5rem);
  height: auto;
  transform: scale(1);
  opacity: 1;
  will-change: transform, opacity;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-loader--logo-out .page-loader__logo {
  opacity: 0;
  transform: scale(0.78);
}

.page-loader--curtain-out .page-loader__curtain {
  transform: translate3d(0, -100%, 0);
}

.page-loader--curtain-out .page-loader__curtain::after {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__curtain,
  .page-loader__logo {
    transition: none;
  }
}

/* ── Platform marquee ── */
.platform-marquee {
  position: relative;
  overflow: hidden;
  background: var(--bg-neutral);
  padding: 1.25rem 0 1rem;
}

.platform-marquee__title {
  margin: 0 0 0.875rem;
  padding-inline: 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: rgba(15, 15, 26, 0.55);
}

.platform-marquee__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.platform-marquee__track {
  display: flex;
  width: max-content;
  animation: platform-marquee-scroll 60s linear infinite;
  will-change: transform;
}

.platform-marquee__row {
  --platform-marquee-gap: 2.75rem;
  display: flex;
  align-items: center;
  gap: var(--platform-marquee-gap);
  margin: 0;
  padding: 0;
  padding-right: var(--platform-marquee-gap);
  list-style: none;
  flex-shrink: 0;
}

.platform-marquee__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.platform-marquee__logo img {
  display: block;
  width: auto;
  height: 1.125rem;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.platform-marquee__logo--webflow img {
  height: 1rem;
}

.platform-marquee__logo--wordpress img {
  height: 1.05rem;
}

.platform-marquee__logo--framer img {
  height: 1.05rem;
}

.platform-marquee__logo--shopify img {
  height: 1.15rem;
}

.platform-marquee__row:hover .platform-marquee__logo img,
.platform-marquee__logo img:hover {
  opacity: 1;
}

@keyframes platform-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

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

@media (min-width: 768px) {
  .platform-marquee {
    padding: 1.5rem 0 1.125rem;
  }

  .platform-marquee__title {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }

  .platform-marquee__row {
    --platform-marquee-gap: 3.25rem;
  }

  .platform-marquee__logo img {
    height: 1.25rem;
  }

  .platform-marquee__logo--webflow img {
    height: 1.125rem;
  }

  .platform-marquee__logo--wordpress img,
  .platform-marquee__logo--framer img {
    height: 1.15rem;
  }

  .platform-marquee__logo--shopify img {
    height: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-marquee__track {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .platform-marquee__row[aria-hidden="true"] {
    display: none;
  }

  .platform-marquee__row {
    --platform-marquee-gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 42rem;
    margin-inline: auto;
    padding-inline: 1rem;
  }
}
