:root{
  --bg:#05060a;
  --bg-deep:#070911;
  --grid:rgba(255,255,255,.025);
  --surface:rgba(255,255,255,.035);
  --surface-strong:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.08);
  --text:#f5f7ff;
  --muted:rgba(245,247,255,.58);
  --soft:rgba(245,247,255,.36);
  --user-bubble:#0e0f14;
  --purple:#7a5cff;
  --purple-2:#a27cff;
  --purple-3:#4d37ff;
  --shadow:0 20px 70px rgba(0,0,0,.28);
  --container:1180px;
}

html[data-theme="light"]{
  --bg:#f7f7f4;
  --bg-deep:#efefeb;
  --grid:rgba(25,24,35,.045);
  --surface:rgba(255,255,255,.62);
  --surface-strong:rgba(255,255,255,.86);
  --line:rgba(21,20,31,.10);
  --text:#15151b;
  --muted:rgba(21,21,27,.56);
  --soft:rgba(21,21,27,.38);
  --user-bubble:#111319;
  --shadow:0 20px 70px rgba(41,39,58,.10);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}

body{
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 18% 22%, rgba(122,92,255,.12), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(122,92,255,.06), transparent 22%),
    linear-gradient(180deg,var(--bg) 0%,var(--bg-deep) 100%);
  min-height:100vh;
  overflow-x:hidden;
  transition:background .35s ease,color .35s ease;
}
html[data-theme="light"] body{
  background:
    radial-gradient(circle at 18% 22%, rgba(122,92,255,.08), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(162,124,255,.07), transparent 22%),
    linear-gradient(180deg,var(--bg) 0%,var(--bg-deep) 100%);
}
a{text-decoration:none;color:inherit}
button{font:inherit}
body>.rl-account-entry{display:none!important}

.rl-bg{
  position:fixed; inset:0; pointer-events:none; z-index:-1;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg,var(--grid) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:radial-gradient(circle at center,rgba(0,0,0,.92),transparent 90%);
  opacity:.38;
}

.rl-header,.rl-main{
  width:min(calc(100% - 32px),var(--container));
  margin-inline:auto;
}
.rl-header{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px; min-height:70px; padding:12px 0;
}
.rl-brand{display:inline-flex; align-items:center; min-width:0}
.rl-logo{display:block; width:132px; max-width:38vw; height:auto}
.rl-logo--light{display:none}
html[data-theme="light"] .rl-logo--dark{display:none}
html[data-theme="light"] .rl-logo--light{display:block}

.rl-header-actions{
  display:flex; align-items:center; gap:10px;
}
.rl-link{
  appearance:none; border:0; background:transparent; color:var(--text);
  cursor:pointer; padding:0 6px; transition:opacity .2s ease, transform .2s ease;
}
.rl-link:hover{opacity:.72}
.rl-btn{
  min-height:44px; padding:0 17px; border-radius:999px;
  border:1px solid transparent; display:inline-flex; align-items:center; justify-content:center;
  cursor:pointer; transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease;
}
.rl-btn:hover{transform:translateY(-1px)}
.rl-btn-solid{
  color:var(--text); background:var(--surface-strong); border-color:var(--line);
}

.rl-theme-control{display:flex;align-items:center;margin-left:2px}
.rl-theme-toggle{
  width:44px;height:44px;border-radius:50%;display:grid;place-items:center;
  cursor:pointer;color:var(--text);background:var(--surface-strong);
  border:1px solid var(--line);box-shadow:0 8px 28px rgba(0,0,0,.08);line-height:1;
  transition:background .3s ease,color .3s ease,border-color .3s ease,transform .2s ease;
}
.rl-theme-toggle:hover{transform:translateY(-1px)}
.rl-theme-input{display:none}
.rl-theme-icon{
  grid-column:1;grid-row:1;display:grid;place-items:center;line-height:.1;
  transition:transform 500ms ease,opacity 350ms ease;
}
.rl-theme-icon svg{width:20px;height:20px}
.rl-theme-icon--moon{transition-delay:200ms}
.rl-theme-icon--sun{transform:scale(0);opacity:0}
.rl-theme-input:checked + .rl-theme-icon--moon{
  transform:rotate(360deg) scale(0);opacity:0;transition-delay:0ms;
}
.rl-theme-input:checked ~ .rl-theme-icon--sun{
  transition-delay:200ms;transform:scale(1) rotate(360deg);opacity:1;
}

.rl-main{
  min-height:calc(100vh - 70px);
  display:grid; align-items:center;
}
.rl-hero{
  min-height:calc(100vh - 90px);
  display:grid; grid-template-columns:minmax(320px,1fr) minmax(420px,520px);
  align-items:center; gap:56px; padding:10px 0 24px;
}

.rl-orb-side{
  position:relative; min-height:560px; display:grid; place-items:center;
}

.orb-container{
  position:relative; width:260px; height:260px;
  display:flex; justify-content:center; align-items:center; overflow:hidden;
  border-radius:50%; rotate:90deg; cursor:default;
  filter:drop-shadow(0 0 10px rgba(162,124,255,.34)) drop-shadow(0 0 18px rgba(77,55,255,.28));
  transition:all .3s ease; z-index:3;
}
html[data-theme="light"] .orb-container{
  filter:drop-shadow(0 0 12px rgba(122,92,255,.24)) drop-shadow(0 0 22px rgba(77,55,255,.18));
}
.orb{
  position:absolute; width:260px; aspect-ratio:1; border-radius:50%;
  background:#060606; filter:blur(24px); transition:all .3s ease; animation:rotate 10s linear infinite;
}
html[data-theme="light"] .orb{background:#f3f1fb}
.orb-inner{
  position:absolute; left:-120%; top:-25%; width:160%; aspect-ratio:1;
  border-radius:50%; background:var(--purple-2);
  clip-path:polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  animation:rotate 8s linear infinite; transition:all .3s ease;
}
.orb-inner:nth-child(2){
  left:auto; right:-120%; top:auto; bottom:-25%; background:var(--purple-3); animation-duration:10s;
  clip-path:polygon(20% 0%,0% 20%,30% 50%,0% 80%,20% 100%,50% 70%,80% 100%,100% 80%,70% 50%,100% 20%,80% 0%,50% 30%);
}

.rl-orb-glow{position:absolute;border-radius:50%;filter:blur(34px);opacity:.9;pointer-events:none}
.rl-orb-glow-a{
  width:340px;height:340px;background:radial-gradient(circle,rgba(122,92,255,.18),transparent 68%);
  animation:pulseGlow 3.4s ease-in-out infinite;
}
.rl-orb-glow-b{
  width:280px;height:280px;background:radial-gradient(circle,rgba(77,55,255,.16),transparent 68%);
  animation:pulseGlow 4.4s ease-in-out infinite reverse;
}
.rl-orb-glow-c{
  width:430px;height:430px;background:radial-gradient(circle,rgba(162,124,255,.08),transparent 72%);
  animation:pulseGlow 5.3s ease-in-out infinite;
}

.rl-chat-side{
  display:flex; align-items:center; justify-content:flex-end;
}
.rl-chat-app{
  width:min(100%, 520px);
  min-height:650px;
  display:flex; flex-direction:column; justify-content:space-between;
}
.rl-chat-thread{
  display:flex; flex-direction:column; gap:22px; min-height:520px; padding-top:10px;
}
.rl-row{
  display:flex; opacity:1; transform:translateY(0); transition:opacity .24s ease, transform .24s ease;
}
.rl-row.is-hidden{opacity:0; transform:translateY(8px)}
.rl-row--user{
  justify-content:flex-end;
}
.rl-user-bubble{
  max-width:78%;
  background:var(--user-bubble);
  color:#fff;
  padding:16px 20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 10px 30px rgba(0,0,0,.14);
  font-size:17px;
  line-height:1.35;
  font-weight:600;
  letter-spacing:-.02em;
}
.rl-row--assistant{
  align-items:flex-start; gap:12px;
}
.rl-assistant-avatar{
  flex:0 0 auto;
  width:24px; height:24px;
  border-radius:8px;
  background:#09090f;
  border:1px solid rgba(255,255,255,.08);
  display:grid; place-items:center;
  box-shadow:0 8px 24px rgba(0,0,0,.12);
  overflow:hidden;
  margin-top:2px;
}
.rl-assistant-avatar img{
  width:16px; height:16px; display:block;
}
.rl-assistant-block{
  flex:1 1 auto;
  min-width:0;
}
.rl-assistant-label{
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  color:#6e57ff;
  margin-bottom:8px;
}
.rl-assistant-content{
  color:var(--text);
  font-size:18px;
  line-height:1.42;
  font-weight:500;
  letter-spacing:-.02em;
}
.rl-assistant-content p{
  margin:0 0 14px;
}
.rl-assistant-content p:last-child{
  margin-bottom:0;
}
.rl-assistant-content strong{
  font-weight:800;
}
.rl-assistant-content em{
  font-style:italic;
}
.rl-assistant-content ul{
  margin:0; padding-left:18px;
}
.rl-assistant-content li{
  margin:0 0 8px;
}
.rl-typed{
  white-space:pre-wrap;
}
.rl-typed.is-caret::after{
  content:"";
  display:inline-block;
  width:1px;
  height:1em;
  margin-left:2px;
  background:currentColor;
  vertical-align:-2px;
  animation:blink 1s step-end infinite;
}

.rl-chat-composer{
  margin-top:24px;
  min-height:92px;
  border-radius:28px;
  border:1px solid rgba(122,92,255,.22);
  background:rgba(255,255,255,.78);
  box-shadow:0 18px 50px rgba(88,72,170,.12), inset 0 0 0 1px rgba(255,255,255,.3);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 18px 0 20px;
}
html[data-theme="dark"] .rl-chat-composer{
  background:rgba(255,255,255,.05);
  box-shadow:0 18px 50px rgba(0,0,0,.2), inset 0 0 0 1px rgba(255,255,255,.04);
}
.rl-chat-composer-placeholder{
  color:rgba(96,110,153,.85);
  font-size:17px;
  font-weight:600;
}
html[data-theme="dark"] .rl-chat-composer-placeholder{
  color:rgba(229,234,255,.42);
}
.rl-chat-composer-actions{
  display:flex; align-items:center; gap:14px;
}
.rl-chat-icon{
  width:18px; height:18px; color:rgba(98,104,129,.75); display:grid; place-items:center;
}
.rl-chat-icon svg{width:18px;height:18px}
html[data-theme="dark"] .rl-chat-icon{
  color:rgba(255,255,255,.38);
}
.rl-chat-send{
  width:42px; height:42px; border-radius:50%;
  display:grid; place-items:center;
  background:radial-gradient(circle at 30% 30%, #c7a9ff, #8d63ff 62%, #6b3dff 100%);
  color:#fff;
  box-shadow:0 10px 28px rgba(122,92,255,.36);
}
.rl-chat-send svg{width:20px;height:20px}

[data-reveal]{opacity:0;transform:translateY(18px);transition:opacity .7s ease,transform .7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@keyframes rotate{
  0%{transform:rotate(0deg)}
  100%{transform:rotate(360deg)}
}
@keyframes pulseGlow{
  0%,100%{transform:scale(1);opacity:.78}
  50%{transform:scale(1.08);opacity:1}
}
@keyframes blink{
  50%{opacity:0}
}

@media (max-width: 1060px){
  .rl-hero{
    grid-template-columns:1fr;
    gap:20px;
    justify-items:center;
  }
  .rl-orb-side{min-height:330px}
  .rl-chat-side{width:100%;justify-content:center}
  .rl-chat-app{min-height:initial;width:min(100%,680px)}
  .rl-chat-thread{min-height:420px}
}
@media (max-width: 760px){
  .rl-header,.rl-main{
    width:min(calc(100% - 24px),var(--container));
  }
  .rl-header{min-height:62px;padding:10px 0}
  .rl-logo{width:108px}
  .rl-header-actions{gap:6px}
  .rl-link{font-size:13px}
  .rl-btn{min-height:38px;padding:0 12px;font-size:13px}
  .rl-theme-toggle{width:38px;height:38px}
  .rl-theme-icon svg{width:18px;height:18px}
  .orb-container{width:220px;height:220px}
  .orb{width:220px}
  .rl-chat-app{width:100%}
  .rl-chat-thread{gap:18px;min-height:360px}
  .rl-user-bubble{
    max-width:86%;
    padding:14px 16px;
    border-radius:16px;
    font-size:15px;
  }
  .rl-assistant-content{
    font-size:16px;
  }
  .rl-chat-composer{
    min-height:82px;
    border-radius:24px;
    padding:0 14px 0 16px;
  }
  .rl-chat-composer-placeholder{
    font-size:15px;
  }
  .rl-chat-send{
    width:38px;height:38px;
  }
}

/* ==========================================================
   RUPTLINE_HOME_BUSINESS_BRAIN_R5
   BLOQUE ÚNICO DEL MÓDULO 2
   ========================================================== */

/* ---------- layout general ---------- */
.rl-business-section{
  --r5-bg:#08090e;
  --r5-shell:#0d0f15;
  --r5-surface:#11131a;
  --r5-surface-2:#171a22;
  --r5-line:rgba(255,255,255,.085);
  --r5-text:#f4f5f8;
  --r5-muted:#8e94a3;
  --r5-soft:#666c7b;
  --r5-accent:#8b70ff;

  width:100%;
  min-width:0;
  position:relative;
  padding:clamp(82px,8vh,124px) 0 clamp(100px,10vh,150px);
}

html[data-theme="light"] .rl-business-section{
  --r5-bg:#f3f4f7;
  --r5-shell:#ffffff;
  --r5-surface:#ffffff;
  --r5-surface-2:#f1f2f6;
  --r5-line:rgba(18,21,30,.105);
  --r5-text:#171920;
  --r5-muted:#687080;
  --r5-soft:#989eab;
  --r5-accent:#6d50e8;
}

.rl-business-shell{
  width:min(calc(100% - 36px),1740px);
  margin:0 auto;
  min-width:0;
  display:grid;
  grid-template-columns:minmax(0,1.72fr) minmax(360px,.60fr);
  align-items:center;
  gap:clamp(30px,3vw,56px);
}

.rl-product-visual{
  width:100%;
  min-width:0;
}

/* ---------- orbe viajero ---------- */
.rl-orb-side{position:relative}

.rl-orb-anchor{
  position:relative;
  width:260px;
  height:260px;
  pointer-events:none;
}

.rl-business-orb-destination{
  height:62px;
  display:flex;
  align-items:flex-start;
}

.rl-orb-anchor--business{
  width:48px;
  height:48px;
}

.rl-orb-traveler{
  position:fixed;
  left:0;
  top:0;
  width:260px;
  height:260px;
  z-index:18;
  pointer-events:none;
  transform-origin:center center;
  will-change:transform,opacity;
}

.rl-orb-scale{
  width:260px;
  height:260px;
  position:relative;
  display:grid;
  place-items:center;
  transform-origin:center center;
  will-change:transform;
}

.rl-orb-traveler .orb-container,
.rl-orb-traveler .orb{
  width:260px;
  height:260px;
}

.rl-orb-traveler .rl-orb-glow{
  position:absolute;
  inset:auto;
}

/* ---------- marco tipo PC ---------- */
.rl-product-frame{
  width:100%;
  min-width:0;
  overflow:hidden;
  border:1px solid var(--r5-line);
  border-radius:30px;
  background:var(--r5-bg);
  box-shadow:0 28px 78px rgba(0,0,0,.24);
  transform:none;
}

html[data-theme="light"] .rl-product-frame{
  box-shadow:0 24px 62px rgba(30,34,52,.12);
}

.rl-product-frame-top{
  height:54px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:0 17px;
  background:var(--r5-shell);
  border-bottom:1px solid var(--r5-line);
}

.rl-product-dots{
  display:flex;
  align-items:center;
  gap:6px;
}

.rl-product-dots span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--r5-soft);
}

.rl-product-frame-brand{
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
}

.rl-product-frame-logo{
  display:block;
  width:auto;
  height:20px;
}

.rl-product-frame-logo--light{display:none}
html[data-theme="light"] .rl-product-frame-logo--dark{display:none}
html[data-theme="light"] .rl-product-frame-logo--light{display:block}

.rl-product-frame-meta{
  justify-self:end;
  width:58px;
  height:1px;
}

.rl-product-stage{
  position:relative;
  width:100%;
  height:clamp(430px,29vw,550px);
  min-width:0;
  overflow:hidden;
  background:var(--r5-bg);
}

.rl-product-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  z-index:3;
  transition:opacity .35s ease;
}

.rl-product-video.is-ready{opacity:1}

.rl-product-fallback{
  position:absolute;
  inset:0;
  z-index:2;
  min-width:0;
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  background:var(--r5-bg);
  transition:opacity .3s ease,transform .3s ease;
}

.rl-product-fallback.is-hidden{
  opacity:0;
  transform:scale(.992);
  pointer-events:none;
}

/* ---------- sidebar ---------- */
.rl-demo-sidebar{
  min-width:0;
  padding:16px 12px 14px;
  display:flex;
  flex-direction:column;
  gap:12px;
  background:var(--r5-shell);
  border-right:1px solid var(--r5-line);
}

.rl-demo-sidebar-header,
.rl-demo-brand-dot{
  display:none !important;
}

.rl-demo-nav-group{
  display:grid;
  gap:7px;
}

.rl-demo-nav{
  min-width:0;
  min-height:40px;
  padding:0 10px;
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:11px;
  color:var(--r5-muted);
  font-size:11px;
  font-weight:700;
  transition:background .22s ease,color .22s ease;
}

.rl-demo-nav svg{
  width:16px;
  height:16px;
  flex:0 0 16px;
}

.rl-demo-nav span{
  width:auto;
  height:auto;
  min-width:0;
  display:block;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  border-radius:0;
  background:none;
  opacity:1;
  line-height:1.2;
}

.rl-demo-nav.is-active{
  color:var(--r5-text);
  background:rgba(124,93,255,.14);
  box-shadow:inset 0 0 0 1px rgba(124,93,255,.12);
}

.rl-demo-nav.is-active svg{color:var(--r5-accent)}

.rl-demo-sidebar-foot{
  margin-top:auto;
  padding-top:12px;
  border-top:1px solid var(--r5-line);
  display:grid;
  gap:10px;
}

.rl-demo-business-row,
.rl-demo-login-row{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--r5-muted);
}

.rl-demo-business-row svg{
  width:16px;
  height:16px;
  flex:none;
}

.rl-demo-business-row div{
  min-width:0;
  display:grid;
  gap:2px;
}

.rl-demo-business-row b,
.rl-demo-login-row b{
  color:var(--r5-text);
  font-size:10px;
}

.rl-demo-business-row small{
  color:var(--r5-muted);
  font-size:8px;
}

.rl-demo-login-row span{
  width:28px;
  height:28px;
  flex:none;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--r5-text);
  color:var(--r5-bg);
  font-size:9px;
  font-weight:800;
}

/* ---------- contenido general ---------- */
.rl-demo-main{
  min-width:0;
  height:100%;
  padding:20px 22px 18px;
  overflow:hidden;
  color:var(--r5-text);
  background:var(--r5-bg);
}

.rl-demo-screen{
  min-width:0;
  min-height:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  gap:12px;
  color:var(--r5-text);
}

.rl-demo-screen-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.rl-demo-screen-kicker{
  color:var(--r5-accent);
  font-size:9px;
  font-weight:800;
  letter-spacing:.15em;
}

.rl-demo-screen-title{
  margin-top:4px;
  color:var(--r5-text);
  font-size:18px;
  font-weight:780;
  letter-spacing:-.035em;
}

.rl-demo-screen-meta{
  color:var(--r5-muted);
  font-size:9px;
  font-weight:700;
  white-space:nowrap;
}

.rl-demo-panel{
  background:var(--r5-surface);
  border:1px solid var(--r5-line);
  border-radius:16px;
}

/* ---------- Inicio ---------- */
.rl-demo-home{justify-content:center}

.rl-demo-home-center{
  width:min(90%,760px);
  margin:auto;
}

.rl-demo-home-header h3{
  margin:0;
  color:var(--r5-text);
  font-size:14px;
}

.rl-demo-home-header h2{
  margin:7px 0 0;
  color:var(--r5-text);
  font-size:clamp(27px,2.5vw,38px);
  line-height:1;
  letter-spacing:-.05em;
}

.rl-demo-home-header p{
  margin:11px 0 0;
  color:var(--r5-muted);
  font-size:12px;
  line-height:1.45;
}

.rl-demo-home-input{
  min-height:58px;
  margin-top:18px;
  padding:0 8px 0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid rgba(124,93,255,.25);
  border-radius:999px;
  background:var(--r5-surface);
  box-shadow:0 8px 30px rgba(73,46,180,.10);
}

.rl-demo-home-input span{color:var(--r5-muted);font-size:14px}

.rl-demo-home-input b{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(180deg,#9d80ff,#6a4cff);
}

.rl-demo-home-input b::before{
  content:"→";
  color:#fff;
  font-size:19px;
}

.rl-demo-home-pills{
  margin-top:11px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:7px;
}

.rl-demo-home-pills span{
  min-height:27px;
  padding:0 11px;
  display:inline-flex;
  align-items:center;
  border:1px solid var(--r5-line);
  border-radius:999px;
  background:var(--r5-surface-2);
  color:var(--r5-muted);
  font-size:9px;
  font-weight:700;
}

.rl-demo-home-note{
  margin-top:9px;
  text-align:center;
  color:var(--r5-muted);
  font-size:9px;
}

/* ---------- POS ---------- */
.rl-demo-pos{display:grid;grid-template-rows:auto auto minmax(0,1fr)}

.rl-demo-searchbar{
  min-height:40px;
  padding:0 10px 0 13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid rgba(124,93,255,.22);
  border-radius:13px;
  background:var(--r5-surface);
  color:var(--r5-muted);
  font-size:11px;
}

.rl-demo-searchbar b{
  padding:7px 10px;
  border:1px solid var(--r5-line);
  border-radius:10px;
  color:var(--r5-text);
  font-size:10px;
}

.rl-demo-pos-grid{
  min-height:0;
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(210px,.75fr);
  gap:12px;
}

.rl-demo-pos-products{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.rl-demo-product-card{
  padding:11px;
  border:1px solid var(--r5-line);
  border-radius:14px;
  background:var(--r5-surface);
}

.rl-demo-product-card h4{
  margin:0;
  display:flex;
  justify-content:space-between;
  gap:8px;
  color:var(--r5-text);
  font-size:11px;
}

.rl-demo-product-card p{margin:4px 0 0;color:var(--r5-muted);font-size:9px}

.rl-demo-product-mini{
  margin-top:8px;
  padding:9px;
  display:flex;
  justify-content:space-between;
  border:1px solid var(--r5-line);
  border-radius:10px;
  color:var(--r5-text);
  font-size:9px;
}

.rl-demo-cart{
  min-height:0;
  display:flex;
  flex-direction:column;
  background:var(--r5-surface);
  border:1px solid var(--r5-line);
  border-radius:14px;
}

.rl-demo-cart-head{
  padding:12px 14px;
  display:flex;
  justify-content:space-between;
  border-bottom:1px solid var(--r5-line);
}

.rl-demo-cart-head strong{font-size:12px}
.rl-demo-cart-head span{color:var(--r5-muted);font-size:9px}

.rl-demo-cart-body{
  flex:1;
  display:grid;
  place-items:center;
  padding:14px;
  text-align:center;
  color:var(--r5-muted);
  font-size:10px;
}

.rl-demo-cart-foot{padding:12px 14px 14px;border-top:1px solid var(--r5-line)}

.rl-demo-cart-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:var(--r5-muted);
  font-size:10px;
}

.rl-demo-cart-total strong{color:var(--r5-text);font-size:16px}

.rl-demo-button{
  min-height:38px;
  margin-top:10px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:linear-gradient(90deg,#8065f7,#9b85f6);
  color:#fff;
  font-size:10px;
  font-weight:800;
}

/* ---------- Operación ---------- */
.rl-demo-ops{display:grid;grid-template-rows:auto auto minmax(0,1fr)}

.rl-demo-ops-tabs,
.rl-demo-marketing-tabs{
  display:flex;
  align-items:center;
  gap:13px;
  padding-bottom:9px;
  border-bottom:1px solid var(--r5-line);
  color:var(--r5-muted);
  font-size:9px;
  font-weight:700;
}

.rl-demo-ops-tabs b,
.rl-demo-marketing-tabs b{position:relative;color:var(--r5-text)}

.rl-demo-ops-tabs b::after,
.rl-demo-marketing-tabs b::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-9px;
  height:2px;
  border-radius:999px;
  background:var(--r5-accent);
}

.rl-demo-kanban{
  min-height:0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}

.rl-demo-column{
  min-height:100%;
  padding:9px;
  border:1px solid var(--r5-line);
  border-radius:14px;
  background:var(--r5-surface);
}

.rl-demo-column h4{margin:0;color:var(--r5-text);font-size:10px}

.rl-demo-task{
  margin-top:9px;
  padding:10px;
  border:1px solid rgba(76,197,127,.34);
  border-radius:11px;
  background:rgba(32,104,58,.16);
}

.rl-demo-task.is-dark{border-color:var(--r5-line);background:var(--r5-surface-2)}
.rl-demo-task strong{display:block;color:var(--r5-text);font-size:10px}
.rl-demo-task span{display:block;margin-top:5px;color:var(--r5-muted);font-size:8px}

/* ---------- Marketing ---------- */
.rl-demo-marketing{display:grid;grid-template-rows:auto auto auto minmax(0,1fr)}

.rl-demo-calendar-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

.rl-demo-calendar-controls{display:flex;align-items:center;gap:6px}

.rl-demo-pill-btn{
  min-height:31px;
  padding:0 10px;
  display:inline-flex;
  align-items:center;
  border:1px solid var(--r5-line);
  border-radius:10px;
  color:var(--r5-text);
  background:var(--r5-surface);
  font-size:9px;
  font-weight:700;
}

.rl-demo-pill-btn.is-ghost{color:var(--r5-muted)}

.rl-demo-calendar{
  min-height:0;
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:7px;
}

.rl-demo-day{
  min-height:100%;
  padding:8px;
  border:1px solid var(--r5-line);
  border-radius:12px;
  background:var(--r5-surface);
}

.rl-demo-day b{display:block;color:var(--r5-text);font-size:9px}

.rl-demo-post{
  margin-top:7px;
  padding:7px;
  border:1px solid var(--r5-line);
  border-radius:9px;
  background:var(--r5-surface-2);
  color:var(--r5-text);
  font-size:8px;
  line-height:1.25;
}

/* ---------- Disebo ---------- */
.rl-demo-design-wrap{display:grid;grid-template-rows:auto minmax(0,1fr)}

.rl-demo-design{
  min-height:0;
  display:grid;
  grid-template-columns:180px minmax(0,1fr) 155px;
  gap:10px;
}

.rl-demo-layers,
.rl-demo-props,
.rl-demo-canvas-panel{
  min-height:0;
  border:1px solid var(--r5-line);
  border-radius:14px;
  background:var(--r5-surface);
}

.rl-demo-layers,
.rl-demo-props{padding:10px}

.rl-demo-layers h4,
.rl-demo-props h4{margin:0;color:var(--r5-text);font-size:10px}

.rl-demo-layer-list{margin-top:10px;display:grid;gap:6px}

.rl-demo-layer-item{
  padding:8px;
  border:1px solid var(--r5-line);
  border-radius:10px;
  background:var(--r5-surface-2);
}

.rl-demo-layer-item b{display:block;color:var(--r5-text);font-size:9px}
.rl-demo-layer-item span{display:block;margin-top:3px;color:var(--r5-muted);font-size:7px}

.rl-demo-canvas-panel{
  display:grid;
  place-items:center;
  background-color:var(--r5-surface-2);
  background-image:
    linear-gradient(var(--r5-line) 1px,transparent 1px),
    linear-gradient(90deg,var(--r5-line) 1px,transparent 1px);
  background-size:22px 22px;
}

.rl-demo-artboard{
  width:min(72%,250px);
  aspect-ratio:1/1.1;
  padding:20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:15px;
  border-radius:7px;
  background:#f6f6f7;
  color:#101116;
  box-shadow:0 16px 38px rgba(0,0,0,.18);
}

.rl-demo-artboard .big{font-size:58px;line-height:.9;font-weight:800}
.rl-demo-artboard .small{font-size:16px;font-weight:800}
.rl-demo-props p{margin:12px 0 0;color:var(--r5-muted);font-size:8px;line-height:1.45}

/* ---------- Presencia en IA ---------- */
.rl-demo-aeo{
  display:grid;
  grid-template-rows:auto auto auto auto minmax(0,1fr);
  gap:10px;
}

.rl-demo-aeo-header{
  display:grid;
  grid-template-columns:minmax(0,1fr) repeat(3,minmax(88px,.30fr));
  gap:8px;
}

.rl-demo-aeo-hero,
.rl-demo-mini-stat,
.rl-demo-step,
.rl-demo-aeo-objective-main,
.rl-demo-aeo-objective-side{
  border:1px solid var(--r5-line);
  border-radius:13px;
  background:var(--r5-surface);
}

.rl-demo-aeo-hero{padding:13px 14px}
.rl-demo-aeo-hero h3{margin:0;color:var(--r5-text);font-size:11px}
.rl-demo-aeo-hero p{margin:7px 0 0;color:var(--r5-muted);font-size:8px;line-height:1.45}

.rl-demo-mini-stat{padding:10px;color:var(--r5-muted);font-size:7px}
.rl-demo-mini-stat b{display:block;margin-top:5px;color:var(--r5-text);font-size:9px}

.rl-demo-progress{margin-top:11px}
.rl-demo-progress-top{display:flex;justify-content:space-between;color:var(--r5-text);font-size:8px;font-weight:700}

.rl-demo-progress-bar{
  height:8px;
  margin-top:8px;
  overflow:hidden;
  border-radius:999px;
  background:var(--r5-surface-2);
}

.rl-demo-progress-bar i{
  display:block;
  width:38%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#aa8cff,#8c6eff);
}

.rl-demo-steps{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:7px}
.rl-demo-step{padding:8px;color:var(--r5-muted);font-size:7px}
.rl-demo-step b{display:block;margin-bottom:4px;color:var(--r5-text);font-size:8px}

.rl-demo-aeo-objective{
  min-height:0;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:8px;
}

.rl-demo-aeo-objective-main,
.rl-demo-aeo-objective-side{padding:11px 12px}

.rl-demo-aeo-objective-main span{color:var(--r5-accent);font-size:7px;font-weight:800;letter-spacing:.12em}
.rl-demo-aeo-objective-main h4{margin:5px 0 0;color:var(--r5-text);font-size:9px}
.rl-demo-aeo-objective-main p,
.rl-demo-aeo-objective-side small{margin:5px 0 0;color:var(--r5-muted);font-size:7px;line-height:1.4}
.rl-demo-aeo-objective-side{display:flex;flex-direction:column;justify-content:center}
.rl-demo-aeo-objective-side b{color:var(--r5-text);font-size:9px}

/* ---------- copy derecha ---------- */
.rl-business-copy{
  min-width:0;
  max-width:500px;
}

.rl-business-kicker{
  margin:0 0 10px;
  color:var(--r5-accent);
  font-size:10px;
  font-weight:800;
  letter-spacing:.16em;
}

.rl-business-copy h2{
  margin:0;
  color:var(--text);
  font-size:clamp(38px,4vw,62px);
  line-height:.94;
  letter-spacing:-.06em;
  font-weight:720;
}

.rl-business-copy h2 span{
  display:inline-block;
  white-space:nowrap;
}

.rl-business-description{
  max-width:480px;
  margin:22px 0 0;
  color:var(--text);
  font-size:16px;
  line-height:1.5;
  letter-spacing:-.02em;
}

.rl-business-description--muted{margin-top:11px;color:var(--muted)}

.rl-business-capabilities{
  max-width:480px;
  margin-top:24px;
  display:flex;
  flex-wrap:wrap;
  gap:7px 8px;
  color:var(--soft);
  font-size:11px;
  font-weight:700;
}

.rl-business-capabilities i{font-style:normal;opacity:.4}
.rl-business-capabilities span{transition:color .22s ease}
.rl-business-capabilities span.is-active{color:var(--text)}

html[data-theme="light"] .rl-business-capabilities{color:rgba(20,22,30,.45)}
html[data-theme="light"] .rl-business-capabilities span.is-active{color:#171920}

/* ---------- responsive ---------- */
@media(max-width:1450px){
  .rl-business-shell{
    width:min(calc(100% - 30px),1540px);
    grid-template-columns:minmax(0,1.58fr) minmax(350px,.65fr);
    gap:32px;
  }

  .rl-product-fallback{grid-template-columns:175px minmax(0,1fr)}
  .rl-product-stage{height:clamp(420px,31vw,520px)}
}

@media(max-width:1180px){
  .rl-business-shell{
    width:min(calc(100% - 24px),1080px);
    grid-template-columns:minmax(0,1.35fr) minmax(320px,.70fr);
  }

  .rl-product-fallback{grid-template-columns:160px minmax(0,1fr)}
  .rl-demo-design{grid-template-columns:150px minmax(0,1fr) 130px}
}

@media(max-width:1060px){
  .rl-business-shell{
    width:min(calc(100% - 24px),920px);
    grid-template-columns:1fr;
    gap:44px;
  }

  .rl-business-copy{order:1;max-width:620px}
  .rl-product-visual{order:2}
  .rl-product-stage{height:500px}
  .rl-business-copy h2{font-size:clamp(40px,7vw,60px)}
}

@media(max-width:700px){
  .rl-business-section{padding:72px 0 90px}
  .rl-business-shell{width:min(calc(100% - 14px),920px);gap:34px}
  .rl-product-frame{border-radius:22px}
  .rl-product-stage{height:440px}
  .rl-product-fallback{grid-template-columns:106px minmax(0,1fr)}
  .rl-demo-sidebar{padding:10px 6px}

  .rl-demo-nav{
    min-height:34px;
    padding:0 6px;
    gap:6px;
    font-size:8px;
  }

  .rl-demo-nav svg{width:13px;height:13px;flex-basis:13px}
  .rl-demo-main{padding:12px 9px 10px}

  .rl-demo-pos-grid,
  .rl-demo-kanban,
  .rl-demo-design,
  .rl-demo-aeo-header,
  .rl-demo-aeo-objective{grid-template-columns:1fr}

  .rl-demo-calendar{grid-template-columns:repeat(4,minmax(0,1fr))}
  .rl-demo-steps{grid-template-columns:repeat(3,minmax(0,1fr))}

  .rl-orb-anchor{width:220px;height:220px}
  .rl-orb-traveler,.rl-orb-scale{width:220px;height:220px}
  .rl-orb-traveler .orb-container,.rl-orb-traveler .orb{width:220px;height:220px}
  .rl-orb-anchor--business{width:44px;height:44px}

  .rl-business-copy h2{font-size:clamp(34px,10vw,48px)}
  .rl-business-copy h2 span{white-space:normal}
  .rl-business-description{font-size:15px}
}

/* ==========================================================
   RUPTLINE_HOME_BUSINESS_BRAIN_R5_1
   Refinamiento compacto del módulo 2
   ========================================================== */

.rl-business-section{
  padding-top:clamp(70px,7vh,104px);
  padding-bottom:clamp(86px,8vh,124px);
}

/*
 * Menos ancho total y mejor reparto:
 * antes la interfaz se comía casi todo el viewport.
 */
.rl-business-shell{
  width:min(92vw,1520px);
  grid-template-columns:minmax(0,1.48fr) minmax(410px,.72fr);
  gap:clamp(34px,3.2vw,54px);
}

/* Panel visual ligeramente más pequeño y menos alto. */
.rl-product-stage{
  height:clamp(380px,24vw,455px);
}

.rl-product-fallback{
  grid-template-columns:172px minmax(0,1fr);
}

.rl-product-frame-top{
  height:50px;
}

.rl-product-frame-logo{
  height:18px;
}

/* Compactar contenido interno sin perder legibilidad. */
.rl-demo-sidebar{
  padding:14px 10px 12px;
}

.rl-demo-nav{
  min-height:36px;
  padding:0 9px;
  font-size:10px;
  gap:9px;
}

.rl-demo-nav svg{
  width:15px;
  height:15px;
  flex-basis:15px;
}

.rl-demo-main{
  padding:17px 18px 15px;
}

.rl-demo-screen{
  gap:10px;
}

.rl-demo-screen-title{
  font-size:16px;
}

.rl-demo-screen-meta{
  font-size:8px;
}

.rl-demo-home-center{
  width:min(88%,680px);
}

.rl-demo-home-header h3{
  font-size:12px;
}

.rl-demo-home-header h2{
  font-size:clamp(24px,2.15vw,34px);
}

.rl-demo-home-header p{
  font-size:11px;
}

.rl-demo-home-input{
  min-height:52px;
  margin-top:15px;
}

.rl-demo-home-input span{
  font-size:13px;
}

.rl-demo-home-input b{
  width:38px;
  height:38px;
}

.rl-demo-home-pills span{
  min-height:25px;
  padding:0 10px;
  font-size:8px;
}

.rl-demo-product-card{
  padding:9px;
}

.rl-demo-product-card h4{
  font-size:10px;
}

.rl-demo-product-mini{
  margin-top:7px;
  padding:8px;
  font-size:8px;
}

.rl-demo-column{
  padding:8px;
}

.rl-demo-task{
  padding:8px;
}

.rl-demo-calendar{
  gap:6px;
}

.rl-demo-day{
  padding:7px;
}

.rl-demo-design{
  grid-template-columns:160px minmax(0,1fr) 140px;
}

.rl-demo-artboard{
  width:min(68%,220px);
}

.rl-demo-artboard .big{
  font-size:50px;
}

.rl-demo-artboard .small{
  font-size:14px;
}

/* El texto gana espacio y deja de salirse. */
.rl-business-copy{
  max-width:520px;
}

.rl-business-orb-destination{
  height:54px;
}

.rl-orb-anchor--business{
  width:42px;
  height:42px;
}

.rl-business-kicker{
  margin-bottom:8px;
  font-size:9px;
}

/*
 * El HTML ya tiene un salto explícito:
 * Todo tu negocio.
 * Un solo cerebro.
 *
 * Reducimos escala para que cada línea quepa completa.
 */
.rl-business-copy h2{
  font-size:clamp(36px,3.25vw,52px);
  line-height:.95;
  letter-spacing:-.055em;
}

.rl-business-copy h2 span{
  white-space:nowrap;
}

.rl-business-description{
  max-width:500px;
  margin-top:18px;
  font-size:15px;
  line-height:1.48;
}

.rl-business-description--muted{
  margin-top:9px;
}

.rl-business-capabilities{
  max-width:500px;
  margin-top:19px;
  font-size:10px;
}

/* Desktop intermedio */
@media(max-width:1450px){
  .rl-business-shell{
    width:min(91vw,1360px);
    grid-template-columns:minmax(0,1.38fr) minmax(390px,.74fr);
    gap:34px;
  }

  .rl-product-stage{
    height:clamp(370px,26vw,430px);
  }

  .rl-product-fallback{
    grid-template-columns:158px minmax(0,1fr);
  }

  .rl-business-copy h2{
    font-size:clamp(35px,3.35vw,48px);
  }
}

/* Tablet horizontal / laptop pequeña */
@media(max-width:1180px){
  .rl-business-shell{
    width:min(calc(100% - 30px),1060px);
    grid-template-columns:minmax(0,1.22fr) minmax(350px,.78fr);
    gap:28px;
  }

  .rl-product-stage{
    height:390px;
  }

  .rl-product-fallback{
    grid-template-columns:145px minmax(0,1fr);
  }

  .rl-business-copy h2{
    font-size:clamp(34px,3.8vw,44px);
  }

  .rl-business-description{
    font-size:14px;
  }
}

/* A partir de aquí vuelve al apilado R5. */
@media(max-width:1060px){
  .rl-business-shell{
    width:min(calc(100% - 24px),880px);
    grid-template-columns:1fr;
    gap:38px;
  }

  .rl-business-copy{
    max-width:580px;
  }

  .rl-product-stage{
    height:460px;
  }

  .rl-business-copy h2{
    font-size:clamp(38px,7vw,54px);
  }
}

@media(max-width:700px){
  .rl-business-shell{
    width:min(calc(100% - 16px),880px);
  }

  .rl-product-stage{
    height:410px;
  }

  .rl-product-fallback{
    grid-template-columns:100px minmax(0,1fr);
  }

  .rl-business-copy h2{
    font-size:clamp(32px,9.2vw,44px);
  }

  .rl-business-copy h2 span{
    white-space:normal;
  }

  .rl-business-description{
    font-size:14px;
  }
}

/* ==========================================================
   RUPTLINE_HOME_POPPINS_FLOATING_HEADER_R5_2
   ========================================================== */

:root{
  --rl-font:"Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

html,
body.rl-page,
body.rl-page button,
body.rl-page input,
body.rl-page textarea,
body.rl-page select,
body.rl-page option,
body.rl-page label,
body.rl-page a,
body.rl-page p,
body.rl-page span,
body.rl-page strong,
body.rl-page b,
body.rl-page em,
body.rl-page small,
body.rl-page h1,
body.rl-page h2,
body.rl-page h3,
body.rl-page h4,
body.rl-page h5,
body.rl-page h6{
  font-family:var(--rl-font) !important;
}

.rl-header{
  position:fixed !important;
  top:16px;
  left:50%;
  z-index:2000;
  width:min(calc(100% - 32px),1180px) !important;
  min-height:58px !important;
  margin:0 !important;
  padding:8px 10px 8px 16px !important;
  transform:translateX(-50%);
  border:1px solid rgba(255,255,255,.09);
  border-radius:20px;
  background:rgba(10,11,17,.72);
  box-shadow:0 18px 50px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.035);
  -webkit-backdrop-filter:blur(22px) saturate(1.15);
  backdrop-filter:blur(22px) saturate(1.15);
}

.rl-main{
  padding-top:82px;
}

html[data-theme="light"] .rl-header{
  border-color:rgba(20,22,30,.09);
  background:rgba(255,255,255,.74);
  box-shadow:0 18px 48px rgba(34,37,54,.10),inset 0 1px 0 rgba(255,255,255,.86);
}

.rl-header .rl-logo{
  width:118px;
}

.rl-header-actions{
  gap:7px;
}

.rl-header .rl-link{
  min-height:38px;
  padding:0 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-size:13px;
  font-weight:500;
}

.rl-header .rl-btn{
  min-height:38px;
  padding:0 14px;
  border-radius:13px;
  font-size:13px;
  font-weight:600;
}

.rl-header .rl-btn-solid{
  background:rgba(255,255,255,.07);
}

html[data-theme="light"] .rl-header .rl-btn-solid{
  background:rgba(17,18,26,.055);
}

.rl-header .rl-theme-toggle{
  width:38px;
  height:38px;
  border-radius:13px;
}

.rl-header,
.rl-header *{
  max-width:100%;
}

.rl-business-copy h2{
  letter-spacing:-.05em;
}

.rl-user-bubble,
.rl-assistant-content,
.rl-business-description{
  letter-spacing:-.015em;
}

.rl-business-kicker,
.rl-assistant-label,
.rl-demo-screen-kicker{
  letter-spacing:.14em;
}

@media(max-width:900px){
  .rl-header{
    top:12px;
    width:calc(100% - 24px) !important;
    min-height:54px !important;
    padding:7px 8px 7px 13px !important;
    border-radius:18px;
  }

  .rl-main{
    padding-top:74px;
  }

  .rl-header .rl-logo{
    width:104px;
  }

  .rl-header .rl-link{
    font-size:12px;
    padding:0 7px;
  }

  .rl-header .rl-btn{
    min-height:36px;
    padding:0 11px;
    font-size:12px;
  }

  .rl-header .rl-theme-toggle{
    width:36px;
    height:36px;
  }
}

@media(max-width:560px){
  .rl-header{
    top:9px;
    width:calc(100% - 16px) !important;
    min-height:50px !important;
    padding:6px 7px 6px 11px !important;
    border-radius:17px;
  }

  .rl-main{
    padding-top:66px;
  }

  .rl-header .rl-logo{
    width:94px;
    max-width:28vw;
  }

  .rl-header-actions{
    gap:4px;
  }

  .rl-header .rl-link{
    min-height:34px;
    padding:0 5px;
    font-size:11px;
  }

  .rl-header .rl-btn{
    min-height:34px;
    padding:0 9px;
    font-size:11px;
    border-radius:11px;
  }

  .rl-header .rl-theme-toggle{
    width:34px;
    height:34px;
    border-radius:11px;
  }
}

/* ==========================================================
   RUPTLINE_HOME_HEADER_STICKY_TYPO_R5_3
   ========================================================== */

/*
 * ESTADO INICIAL
 * Transparente, sin trazo, sin blur y siempre dentro del viewport.
 */
.rl-header{
  position:absolute !important;
  top:8px !important;
  left:12px !important;
  right:12px !important;
  width:auto !important;
  max-width:1180px !important;
  min-height:58px !important;
  margin:0 auto !important;
  padding:8px 10px 8px 14px !important;
  transform:none !important;

  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;

  -webkit-backdrop-filter:none !important;
  backdrop-filter:none !important;

  transition:
    top .24s ease,
    background-color .24s ease,
    border-radius .24s ease;
}

/*
 * ESTADO STICKY
 * Sólo fondo sólido según tema.
 * Sin borde, sin glass, sin trazo.
 */
.rl-header.is-sticky{
  position:fixed !important;
  top:10px !important;
  border:0 !important;
  border-radius:16px !important;
  background:#090a0e !important;
  box-shadow:none !important;
  -webkit-backdrop-filter:none !important;
  backdrop-filter:none !important;
}

html[data-theme="light"] .rl-header.is-sticky{
  background:#ffffff !important;
}

/* En el inicio también anulamos cualquier fondo heredado de R5.2. */
html[data-theme="light"] .rl-header:not(.is-sticky),
html[data-theme="dark"] .rl-header:not(.is-sticky){
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

/* Mantener aire para que el header absoluto no tape el hero. */
.rl-main{
  padding-top:72px !important;
}

/* Acciones: limpias, sin apariencia de tarjeta en reposo. */
.rl-header .rl-link,
.rl-header .rl-btn,
.rl-header .rl-theme-toggle{
  box-shadow:none !important;
}

.rl-header:not(.is-sticky) .rl-btn-solid,
.rl-header:not(.is-sticky) .rl-theme-toggle{
  background:transparent !important;
  border-color:transparent !important;
}

.rl-header.is-sticky .rl-btn-solid,
.rl-header.is-sticky .rl-theme-toggle{
  background:rgba(255,255,255,.075) !important;
  border-color:transparent !important;
}

html[data-theme="light"] .rl-header.is-sticky .rl-btn-solid,
html[data-theme="light"] .rl-header.is-sticky .rl-theme-toggle{
  background:rgba(17,19,26,.055) !important;
}

/*
 * POPPINS — más elegante:
 * menos peso y más respiración.
 */
body.rl-page h1,
body.rl-page h2,
body.rl-page h3,
body.rl-page h4,
body.rl-page h5,
body.rl-page h6{
  font-family:var(--rl-font) !important;
  font-weight:600 !important;
  letter-spacing:-.01em !important;
}

/* Título principal del módulo */
body.rl-page .rl-business-copy h2{
  font-weight:600 !important;
  letter-spacing:-.018em !important;
  line-height:1.02 !important;
}

/* Títulos de pantallas / producto */
body.rl-page .rl-demo-screen-title,
body.rl-page .rl-demo-home-header h2,
body.rl-page .rl-assistant-label{
  font-weight:600 !important;
  letter-spacing:0 !important;
}

/* Conversación más natural, no pesada */
body.rl-page .rl-user-bubble{
  font-weight:500 !important;
  letter-spacing:0 !important;
}

body.rl-page .rl-assistant-content,
body.rl-page .rl-business-description{
  font-weight:400 !important;
  letter-spacing:0 !important;
}

/* Etiquetas uppercase sí conservan tracking. */
body.rl-page .rl-business-kicker,
body.rl-page .rl-demo-screen-kicker{
  font-weight:600 !important;
  letter-spacing:.13em !important;
}

/* Botones ligeramente menos gruesos. */
body.rl-page button,
body.rl-page .rl-btn,
body.rl-page .rl-link{
  font-weight:500 !important;
  letter-spacing:0 !important;
}

/* Laptop */
@media(max-width:900px){
  .rl-header{
    top:6px !important;
    left:10px !important;
    right:10px !important;
    max-width:none !important;
    min-height:54px !important;
    padding:7px 8px 7px 12px !important;
  }

  .rl-header.is-sticky{
    top:8px !important;
    border-radius:14px !important;
  }

  .rl-main{
    padding-top:66px !important;
  }
}

/* Móvil */
@media(max-width:560px){
  .rl-header{
    top:4px !important;
    left:7px !important;
    right:7px !important;
    max-width:none !important;
    min-height:50px !important;
    padding:6px 7px 6px 10px !important;
  }

  .rl-header.is-sticky{
    top:6px !important;
    border-radius:13px !important;
  }

  .rl-main{
    padding-top:60px !important;
  }

  body.rl-page .rl-business-copy h2{
    letter-spacing:-.012em !important;
  }
}

/* ==========================================================
   RUPTLINE_HOME_ORB_CONTINUOUS_R7
   ========================================================== */

.rl-main{
  margin-bottom:clamp(82px,11vh,145px);
}

.rl-business-section{
  padding-top:clamp(78px,9vh,116px);
  padding-bottom:clamp(122px,14vh,188px);
}

.rl-discovery-section{
  --r7-text:#f4f5f8;
  --r7-muted:#949aa9;
  --r7-line:rgba(255,255,255,.09);
  position:relative;
  width:100%;
  min-height:360vh;
  margin-top:clamp(112px,14vh,190px);
  padding:0 0 16vh;
  overflow:clip;
  isolation:isolate;
}

html[data-theme="light"] .rl-discovery-section{
  --r7-text:#171920;
  --r7-muted:#687080;
  --r7-line:rgba(18,21,30,.09);
}

.rl-discovery-shell{
  position:sticky;
  top:86px;
  width:min(calc(100% - 72px),1360px);
  min-height:calc(100vh - 106px);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(250px,330px) minmax(0,1fr);
  gap:clamp(70px,7vw,126px);
  align-items:center;
}

.rl-discovery-left{
  position:relative;
  z-index:3;
  align-self:center;
  justify-self:end;
  width:100%;
  max-width:310px;
}

.rl-discovery-orb-wrap{
  width:100%;
  min-height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-left:clamp(26px,2.8vw,54px);
}

.rl-orb-anchor--discovery{
  width:142px;
  height:142px;
  flex:none;
}

.rl-discovery-left-copy{
  width:100%;
  max-width:252px;
  margin:12px auto 0;
  padding-left:clamp(18px,1.8vw,30px);
}

.rl-discovery-kicker{
  color:#8f73ff;
  font-size:9px;
  font-weight:600;
  letter-spacing:.17em;
}

.rl-discovery-left-copy h2{
  margin:8px 0 0;
  max-width:246px;
  color:var(--r7-text);
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.38;
  letter-spacing:.004em;
  font-weight:400 !important;
}

.rl-discovery-left-copy h2 br{display:none}
.rl-discovery-left-copy p{display:none !important}

.rl-discovery-right{
  position:relative;
  z-index:2;
  min-width:0;
  min-height:620px;
  display:flex;
  align-items:center;
}

.rl-discovery-stage-wrap{
  width:100%;
  min-height:620px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.rl-discovery-stage{
  position:relative;
  width:min(100%,880px);
  height:520px;
}

.rl-discovery-item{
  position:absolute;
  left:0;
  top:50%;
  width:min(100%,860px);
  padding:0;
  transform:translate3d(0,-50%,0);
  opacity:0;
  pointer-events:none;
  will-change:transform,opacity;
}

.rl-discovery-item-kicker{
  margin-bottom:12px;
  color:#8f73ff;
  font-size:11px;
  font-weight:600;
  letter-spacing:.16em;
}

.rl-discovery-item h3{
  margin:0;
  max-width:850px;
  color:var(--r7-text);
  font-size:clamp(39px,4.2vw,70px);
  line-height:1.01;
  letter-spacing:-.018em;
  font-weight:500 !important;
  text-wrap:balance;
}

.rl-discovery-item p{
  margin:18px 0 0;
  max-width:700px;
  color:var(--r7-muted);
  font-size:clamp(15px,1.08vw,19px);
  line-height:1.6;
  font-weight:400;
}

.rl-discovery-item-tags{
  margin-top:19px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.rl-discovery-item-tags span{
  min-height:29px;
  padding:0 12px;
  display:inline-flex;
  align-items:center;
  border:1px solid var(--r7-line);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  color:var(--r7-text);
  font-size:10px;
  font-weight:500;
}

html[data-theme="light"] .rl-discovery-item-tags span{
  background:rgba(17,19,26,.03);
}

/* Haz hijo del mismo #rl-orb-traveler */
.rl-orb-beam-global{
  position:absolute;
  left:50%;
  top:50%;
  width:min(74vw,1180px);
  height:clamp(260px,31vw,470px);
  border-radius:999px;
  pointer-events:none;
  z-index:-1;
  opacity:0;
  transform:translate3d(18px,-50%,0) scaleX(.76);
  transform-origin:left center;
  background:linear-gradient(
    90deg,
    rgba(137,104,255,.28) 0%,
    rgba(124,91,255,.15) 24%,
    rgba(107,78,220,.065) 52%,
    transparent 86%
  );
  filter:blur(52px);
  will-change:opacity,transform;
}

.rl-orb-beam-global::after{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:72%;
  height:58%;
  border-radius:999px;
  transform:translateY(-50%);
  background:radial-gradient(
    ellipse at left center,
    rgba(151,124,255,.22) 0%,
    rgba(119,87,241,.075) 42%,
    transparent 74%
  );
  filter:blur(26px);
}

html[data-theme="light"] .rl-orb-beam-global{
  background:linear-gradient(
    90deg,
    rgba(125,88,255,.19) 0%,
    rgba(125,88,255,.09) 28%,
    rgba(125,88,255,.028) 58%,
    transparent 88%
  );
}

.rl-orb-traveler{overflow:visible !important}
.rl-orb-scale{position:relative;z-index:2}

@media(max-width:1120px){
  .rl-main{margin-bottom:82px}
  .rl-business-section{padding-bottom:120px}

  .rl-discovery-section{
    min-height:330vh;
    margin-top:100px;
  }

  .rl-discovery-shell{
    width:min(calc(100% - 34px),1050px);
    grid-template-columns:minmax(210px,270px) minmax(0,1fr);
    gap:46px;
  }

  .rl-orb-anchor--discovery{width:126px;height:126px}

  .rl-discovery-stage,
  .rl-discovery-stage-wrap,
  .rl-discovery-right{
    min-height:540px;
    height:540px;
  }

  .rl-discovery-item h3{
    font-size:clamp(34px,4.7vw,56px);
  }
}

@media(max-width:900px){
  .rl-main{margin-bottom:68px}
  .rl-business-section{padding-bottom:94px}

  .rl-discovery-section{
    min-height:310vh;
    margin-top:80px;
    padding-bottom:90px;
  }

  .rl-discovery-shell{
    top:72px;
    width:min(calc(100% - 22px),880px);
    min-height:calc(100vh - 88px);
    grid-template-columns:1fr;
    gap:18px;
    align-content:center;
  }

  .rl-discovery-left{
    justify-self:start;
    max-width:420px;
  }

  .rl-discovery-orb-wrap{
    width:auto;
    min-height:120px;
    justify-content:flex-start;
    padding-left:20px;
  }

  .rl-orb-anchor--discovery{width:114px;height:114px}

  .rl-discovery-left-copy{
    margin:5px 0 0;
    padding-left:20px;
    max-width:320px;
  }

  .rl-discovery-left-copy h2{
    max-width:300px;
    font-size:18px;
  }

  .rl-discovery-right,
  .rl-discovery-stage-wrap{
    min-height:430px;
  }

  .rl-discovery-stage{height:430px}

  .rl-discovery-item h3{
    font-size:clamp(29px,6.8vw,46px);
  }

  .rl-orb-beam-global{
    width:110vw;
    height:300px;
    filter:blur(44px);
  }
}

@media(max-width:620px){
  .rl-main{margin-bottom:56px}
  .rl-business-section{padding-bottom:78px}

  .rl-discovery-section{
    min-height:290vh;
    margin-top:64px;
  }

  .rl-discovery-shell{
    top:64px;
    width:min(calc(100% - 16px),880px);
    gap:12px;
  }

  .rl-discovery-orb-wrap{
    min-height:100px;
    padding-left:13px;
  }

  .rl-orb-anchor--discovery{width:96px;height:96px}

  .rl-discovery-left-copy{padding-left:13px}

  .rl-discovery-left-copy h2{
    max-width:255px;
    font-size:16px;
  }

  .rl-discovery-right,
  .rl-discovery-stage-wrap{
    min-height:370px;
  }

  .rl-discovery-stage{height:370px}

  .rl-discovery-item h3{
    font-size:clamp(25px,8vw,37px);
  }

  .rl-discovery-item p{
    margin-top:13px;
    font-size:14px;
    line-height:1.5;
  }

  .rl-discovery-item-tags{
    margin-top:14px;
    gap:6px;
  }

  .rl-discovery-item-tags span{
    min-height:25px;
    padding:0 9px;
    font-size:9px;
  }

  .rl-orb-beam-global{
    width:125vw;
    height:250px;
  }
}

/* ==========================================================
   RUPTLINE_HOME_FEED_REBUILD_R9
   ========================================================== */

.rl-r9-feed{
  --r9-text:#f5f6f8;
  --r9-muted:#969dad;
  --r9-line:rgba(255,255,255,.085);
  position:relative;
  width:100%;
  min-height:375vh;
  margin-top:clamp(110px,13vh,170px);
  padding:0 0 15vh;
  overflow:clip;
  isolation:isolate;
}

html[data-theme="light"] .rl-r9-feed{
  --r9-text:#171920;
  --r9-muted:#697183;
  --r9-line:rgba(20,23,32,.09);
}

.rl-r9-feed-sticky{
  position:sticky;
  top:82px;
  width:min(calc(100% - 64px),1180px);
  min-height:calc(100vh - 100px);
  margin:0 auto;
  display:flex;
  align-items:center;
}

.rl-r9-feed-scene{
  position:relative;
  width:100%;
  min-height:700px;
}

.rl-r9-state{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition:opacity .28s ease;
}

.rl-r9-state.is-active{
  opacity:1;
  pointer-events:auto;
}

.rl-r9-state--chat{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:30px;
}

.rl-r9-chat-heading{
  width:min(100%,680px);
  text-align:center;
}

.rl-r9-eyebrow{
  color:#8f73ff;
  font-size:10px;
  line-height:1.3;
  font-weight:600;
  letter-spacing:.18em;
}

.rl-r9-chat-heading h2,
.rl-r9-copy-stage h2{
  margin:10px 0 0;
  color:var(--r9-text);
  font-size:clamp(30px,3.1vw,50px);
  line-height:1.04;
  letter-spacing:-.027em;
  font-weight:500!important;
  text-wrap:balance;
}

.rl-r9-chat-heading p,
.rl-r9-copy-stage p{
  margin:13px auto 0;
  color:var(--r9-muted);
  font-size:clamp(14px,.96vw,17px);
  line-height:1.58;
  font-weight:400;
}

.rl-r9-chat-heading p{max-width:580px}

.rl-r9-chat-card{
  position:relative;
  width:min(100%,860px);
  padding:30px 32px 26px;
  border:1px solid var(--r9-line);
  border-radius:28px;
  background:rgba(9,11,18,.46);
  box-shadow:0 24px 68px rgba(0,0,0,.22);
  backdrop-filter:blur(22px);
}

html[data-theme="light"] .rl-r9-chat-card{
  background:rgba(255,255,255,.76);
  box-shadow:0 24px 68px rgba(46,55,80,.11);
}

.rl-r9-orb-anchor{
  pointer-events:none;
  flex:none;
}

.rl-r9-orb-anchor--chat{
  position:absolute;
  right:22px;
  top:-36px;
  width:82px;
  height:82px;
}

.rl-r9-chat-user{
  display:flex;
  justify-content:flex-end;
}

.rl-r9-user-bubble{
  max-width:640px;
  min-height:60px;
  padding:16px 20px;
  border-radius:19px;
  background:#101218;
  color:#fff;
  font-size:clamp(17px,1.2vw,22px);
  line-height:1.34;
  font-weight:500;
  box-shadow:0 9px 22px rgba(0,0,0,.16);
}

.rl-r9-chat-assistant{
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  gap:13px;
  margin-top:18px;
  align-items:start;
}

.rl-r9-assistant-icon{
  width:28px;
  height:28px;
  border-radius:8px;
  object-fit:contain;
}

.rl-r9-assistant-label{
  margin:1px 0 7px;
  color:#8f73ff;
  font-size:10px;
  font-weight:700;
  letter-spacing:.13em;
}

.rl-r9-chat-assistant p{
  margin:0 0 10px;
  max-width:690px;
  color:var(--r9-text);
  font-size:clamp(17px,1.18vw,22px);
  line-height:1.48;
  font-weight:400;
}

.rl-r9-chat-assistant p:last-child{margin-bottom:0}

.rl-r9-chat-action{
  display:flex;
  justify-content:center;
  margin-top:20px;
}

.rl-r9-create{
  min-width:150px;
  height:50px;
  padding:0 24px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,#7956ff,#aa86ff);
  color:#fff;
  font-family:inherit;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 11px 30px rgba(121,86,255,.28);
  transition:transform .2s ease,box-shadow .2s ease;
}

.rl-r9-create:hover{
  transform:translateY(-1px);
  box-shadow:0 15px 34px rgba(121,86,255,.36);
}

/* BUILD */
.rl-r9-state--build{
  display:flex;
  align-items:center;
  justify-content:center;
}

.rl-r9-build-layout{
  width:min(100%,980px);
  display:grid;
  grid-template-columns:minmax(240px,300px) minmax(0,430px);
  justify-content:center;
  gap:clamp(56px,7vw,105px);
  align-items:center;
}

.rl-r9-build-copy{
  position:relative;
  min-height:430px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.rl-r9-copy-stage{
  max-width:285px;
  transition:opacity .34s ease,transform .34s ease;
}

.rl-r9-copy-stage h2{
  max-width:10ch;
  font-size:clamp(27px,2.7vw,42px);
}

.rl-r9-copy-stage p{
  max-width:29ch;
  margin-left:0;
  margin-right:0;
}

.rl-r9-copy-stage--done{
  position:absolute;
  left:0;
  top:0;
  opacity:0;
  transform:translateY(12px);
}

.rl-r9-state--build.is-done .rl-r9-copy-stage--loading{
  opacity:0;
  transform:translateY(-12px);
}

.rl-r9-state--build.is-done .rl-r9-copy-stage--done{
  opacity:1;
  transform:translateY(0);
}

.rl-r9-orb-status{
  margin-top:auto;
  display:flex;
  align-items:center;
  gap:13px;
}

.rl-r9-orb-anchor--build{
  width:82px;
  height:82px;
}

.rl-r9-status-pill{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:0 14px;
  border:1px solid var(--r9-line);
  border-radius:999px;
  background:rgba(18,20,30,.72);
  color:var(--r9-text);
  box-shadow:0 10px 24px rgba(0,0,0,.16);
  font-size:12px;
  font-weight:600;
}

html[data-theme="light"] .rl-r9-status-pill{
  background:rgba(255,255,255,.8);
  box-shadow:0 10px 24px rgba(46,55,80,.1);
}

.rl-r9-status-done{display:none}
.rl-r9-state--build.is-done .rl-r9-status-loading,
.rl-r9-state--build.is-done .rl-r9-dots{display:none}
.rl-r9-state--build.is-done .rl-r9-status-done{display:inline}

.rl-r9-dots{display:inline-flex;gap:5px}
.rl-r9-dots i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#8f73ff;
  opacity:.28;
  animation:rlR9Dot 1.05s ease-in-out infinite;
}
.rl-r9-dots i:nth-child(2){animation-delay:.14s}
.rl-r9-dots i:nth-child(3){animation-delay:.28s}
@keyframes rlR9Dot{
  0%,80%,100%{transform:translateY(0);opacity:.28}
  40%{transform:translateY(-3px);opacity:1}
}

/* Instagram compacto */
.rl-r9-instagram{
  position:relative;
  width:min(100%,360px);
  padding:11px 11px 10px;
  border:1px solid rgba(20,22,28,.08);
  border-radius:9px;
  background:#f7f7f8;
  box-shadow:0 28px 72px rgba(0,0,0,.19);
  color:#171920;
}

html[data-theme="light"] .rl-r9-instagram{
  box-shadow:0 24px 58px rgba(45,55,82,.11);
}

.rl-r9-instagram-head{
  padding:0 2px 9px;
  font-size:10.5px;
  line-height:1;
  font-weight:700;
}

.rl-r9-instagram-name{
  display:flex;
  align-items:center;
  gap:5px;
}

.rl-r9-instagram-name span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#3197ff;
}

.rl-r9-instagram-profile{
  display:grid;
  grid-template-columns:50px minmax(0,1fr);
  gap:9px;
  padding:0 2px 7px;
  align-items:start;
}

.rl-r9-profile-photo{
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(145deg,#e6dcd2,#c0cedd 52%,#7595b9);
}

.rl-r9-profile-title{
  font-size:9.8px;
  line-height:1.3;
}

.rl-r9-profile-stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:4px;
  font-size:9px;
  line-height:1.2;
}

.rl-r9-profile-stats strong{
  display:block;
  font-size:10.4px;
  font-weight:700;
}

.rl-r9-profile-bio,
.rl-r9-profile-link{
  margin-top:4px;
  font-size:9.2px;
  line-height:1.32;
}

.rl-r9-profile-link{color:#2e78ff;margin-top:1px}

.rl-r9-highlights{
  display:flex;
  align-items:center;
  gap:7px;
  padding:6px 2px 8px;
}

.rl-r9-highlight{
  position:relative;
  width:27px;
  height:27px;
  border-radius:50%;
  border:1px solid rgba(18,20,28,.08);
  background:#d7d7d8;
}

.rl-r9-highlight--plus{background:#f3f3f4}
.rl-r9-highlight--plus::before,
.rl-r9-highlight--plus::after{
  content:"";
  position:absolute;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  background:#171920;
}
.rl-r9-highlight--plus::before{width:11px;height:1.5px}
.rl-r9-highlight--plus::after{width:1.5px;height:11px}
.rl-r9-highlight--1{background:#7d6758}
.rl-r9-highlight--2{background:#ae9887}
.rl-r9-highlight--3{background:#7e9dbc}
.rl-r9-highlight--4{background:#889eb6}
.rl-r9-highlight--5{background:#d8d0c8}

.rl-r9-instagram-tabs{
  display:flex;
  justify-content:space-around;
  align-items:center;
  padding:0 2px 7px;
  color:#252a34;
}

.rl-r9-tab{
  position:relative;
  width:17px;
  height:13px;
  opacity:.72;
}
.rl-r9-tab--grid::before{content:"";position:absolute;inset:0;border:1.3px solid currentColor}
.rl-r9-tab--grid::after{content:"";position:absolute;left:5px;right:5px;top:0;bottom:0;border-left:1px solid currentColor;border-right:1px solid currentColor}
.rl-r9-tab--reel::before{content:"";position:absolute;inset:1px;border:1.3px solid currentColor;border-radius:2px}
.rl-r9-tab--reel::after{content:"";position:absolute;left:6px;top:4px;border-left:4px solid currentColor;border-top:2.5px solid transparent;border-bottom:2.5px solid transparent}
.rl-r9-tab--tag::before{content:"";position:absolute;left:3px;right:3px;top:1px;bottom:1px;border:1.3px solid currentColor;border-radius:2px}
.rl-r9-tab--tag::after{content:"";position:absolute;width:4px;height:4px;border-radius:50%;border:1.3px solid currentColor;left:50%;top:50%;transform:translate(-50%,-50%)}

.rl-r9-feed-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;
  transition:opacity .42s ease,transform .42s ease;
}

.rl-r9-feed-grid i,
.rl-r9-feed-grid article{
  aspect-ratio:1/1;
  display:block;
  overflow:hidden;
}

.rl-r9-feed-grid--brand .b1,
.rl-r9-feed-grid--brand .b3,
.rl-r9-feed-grid--brand .b5,
.rl-r9-feed-grid--brand .b7{background:#81a0c0}
.rl-r9-feed-grid--brand .b2,
.rl-r9-feed-grid--brand .b4,
.rl-r9-feed-grid--brand .b8{background:#9f9287}
.rl-r9-feed-grid--brand .b6{background:#d5cec8}
.rl-r9-feed-grid--brand .b9{background:#d8d7dd}

.rl-r9-feed-grid--final{
  position:absolute;
  left:11px;
  right:11px;
  bottom:10px;
  opacity:0;
  transform:scale(1.015);
}

.rl-r9-instagram.is-done .rl-r9-feed-grid--brand{
  opacity:0;
  transform:scale(.99);
}

.rl-r9-instagram.is-done .rl-r9-feed-grid--final{
  opacity:1;
  transform:scale(1);
}

.rl-r9-feed-grid article{
  position:relative;
  padding:7px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#fff;
}

.rl-r9-feed-grid article::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 24%,rgba(0,0,0,.32) 100%);
}

.rl-r9-feed-grid article span,
.rl-r9-feed-grid article strong{
  position:relative;
  z-index:1;
}

.rl-r9-feed-grid article span{
  font-size:7.4px;
  line-height:1.1;
}

.rl-r9-feed-grid article strong{
  margin-top:3px;
  font-size:12.4px;
  line-height:1.03;
  font-weight:500;
}

.rl-r9-feed-grid .p1{background:linear-gradient(145deg,#7696ba,#596f8f)}
.rl-r9-feed-grid .p2{background:linear-gradient(145deg,#8c796c,#c4ae99)}
.rl-r9-feed-grid .p3{background:linear-gradient(145deg,#d6c8bb,#94877b,#68584e)}
.rl-r9-feed-grid .p4{background:linear-gradient(145deg,#e5ded5,#aa9784,#796354)}
.rl-r9-feed-grid .p5{background:linear-gradient(145deg,#8da7c2,#9fb5ca,#7e91a8)}
.rl-r9-feed-grid .p6{background:linear-gradient(145deg,#cbb4a0,#ece0d0,#98abc2)}
.rl-r9-feed-grid .p7{background:linear-gradient(145deg,#7d9fc2,#b4c3d3,#d1c7bc)}
.rl-r9-feed-grid .p8{background:linear-gradient(145deg,#c8b6a2,#e7ddd0,#88a2c0)}
.rl-r9-feed-grid .p9{background:linear-gradient(145deg,#b5c4d4,#98aec5,#e7e0d8)}

.rl-r9-type-caret::after{
  content:"";
  display:inline-block;
  width:1px;
  height:1.06em;
  margin-left:3px;
  vertical-align:-.14em;
  background:currentColor;
  animation:rlR9Caret 1s step-end infinite;
}
@keyframes rlR9Caret{50%{opacity:0}}

/* El traveler debe quedar siempre visible por encima de esta escena. */
#rl-orb-traveler{z-index:48}
#rl-orb-traveler .rl-orb-beam-global{z-index:-1}

@media(max-width:980px){
  .rl-r9-feed{min-height:350vh;margin-top:90px}
  .rl-r9-feed-sticky{top:72px;width:min(calc(100% - 24px),900px);min-height:calc(100vh - 88px)}
  .rl-r9-feed-scene{min-height:820px}
  .rl-r9-build-layout{grid-template-columns:1fr;gap:24px;justify-items:center}
  .rl-r9-build-copy{width:min(100%,620px);min-height:auto}
  .rl-r9-copy-stage{max-width:520px}
  .rl-r9-copy-stage h2{max-width:14ch;font-size:clamp(25px,6vw,36px)}
  .rl-r9-orb-status{margin-top:20px}
  .rl-r9-instagram{width:min(100%,350px)}
}

@media(max-width:620px){
  .rl-r9-feed{min-height:330vh;margin-top:70px;padding-bottom:90px}
  .rl-r9-feed-sticky{top:64px;width:min(calc(100% - 14px),900px)}
  .rl-r9-feed-scene{min-height:760px}
  .rl-r9-state--chat{gap:20px}
  .rl-r9-chat-heading h2{font-size:clamp(25px,8vw,34px)}
  .rl-r9-chat-heading p{max-width:32ch;font-size:14px}
  .rl-r9-chat-card{padding:22px 18px 20px;border-radius:22px}
  .rl-r9-orb-anchor--chat{right:12px;top:-28px;width:68px;height:68px}
  .rl-r9-user-bubble{max-width:100%;min-height:54px;padding:14px 16px;font-size:15px}
  .rl-r9-chat-assistant{grid-template-columns:30px minmax(0,1fr);gap:9px}
  .rl-r9-chat-assistant p{font-size:15px}
  .rl-r9-create{min-width:132px;height:46px;font-size:15px}
  .rl-r9-build-copy{width:100%}
  .rl-r9-copy-stage{max-width:100%}
  .rl-r9-copy-stage h2{font-size:clamp(23px,8vw,30px);max-width:11ch}
  .rl-r9-copy-stage p{font-size:14px;max-width:31ch}
  .rl-r9-orb-anchor--build{width:68px;height:68px}
  .rl-r9-status-pill{min-height:36px;padding:0 12px}
  .rl-r9-instagram{width:min(100%,310px);padding:9px}
  .rl-r9-feed-grid--final{left:9px;right:9px;bottom:9px}
  .rl-r9-feed-grid article strong{font-size:10.5px}
  .rl-r9-feed-grid article span{font-size:6.8px}
}

/* ==========================================================
   RUPTLINE_HOME_FEED_R9_1_AUTOSCROLL_SPACING
   ========================================================== */

/*
 * Menos vacío entre Módulo 2 (Todo tu negocio) y Módulo 3
 * (Descubre capacidades). R7 tenía bastante padding + margin.
 */
.rl-business-section{
  padding-bottom:clamp(68px,7.5vh,102px) !important;
}

.rl-discovery-section{
  margin-top:clamp(52px,6.5vh,88px) !important;
  padding-bottom:clamp(58px,7vh,94px) !important;
}

/*
 * Menos vacío después de Discovery y antes de:
 * MARKETING CON IA / De una idea a un feed completo.
 */
.rl-r9-feed{
  margin-top:clamp(42px,5.5vh,76px) !important;
}

@media(max-width:900px){
  .rl-business-section{
    padding-bottom:70px !important;
  }

  .rl-discovery-section{
    margin-top:42px !important;
    padding-bottom:64px !important;
  }

  .rl-r9-feed{
    margin-top:44px !important;
  }
}

@media(max-width:620px){
  .rl-business-section{
    padding-bottom:58px !important;
  }

  .rl-discovery-section{
    margin-top:34px !important;
    padding-bottom:52px !important;
  }

  .rl-r9-feed{
    margin-top:36px !important;
  }
}

/* ==========================================================
   RUPTLINE_HOME_AI_CONTEXT_PLANES_R10
   ========================================================== */
.rl-context-ai-section{
  --rl-context-reveal:0;
  position:relative;
  width:100%;
  min-height:clamp(720px,94vh,980px);
  margin-top:clamp(36px,5vh,72px);
  padding:clamp(72px,9vh,118px) 24px clamp(88px,11vh,138px);
  overflow:clip;
  isolation:isolate;
}

.rl-context-ai-shell{
  width:min(calc(100% - 12px),1180px);
  min-height:clamp(560px,72vh,760px);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.rl-context-ai-orb-space{
  position:relative;
  width:158px;
  height:158px;
  flex:0 0 158px;
  margin-bottom:clamp(30px,4vh,48px);
}

.rl-context-ai-anchor{
  position:absolute;
  left:50%;
  top:50%;
  width:142px;
  height:142px;
  transform:translate(-50%,-50%);
  pointer-events:none;
}

.rl-context-ai-copy{
  width:min(100%,900px);
  opacity:calc(.08 + (var(--rl-context-reveal) * .92));
  transform:translate3d(0,calc(28px - (var(--rl-context-reveal) * 28px)),0);
  will-change:opacity,transform;
}

.rl-context-ai-kicker{
  margin-bottom:18px;
  color:#8f73ff;
  font-size:11px;
  line-height:1.2;
  letter-spacing:.19em;
  font-weight:600;
}

.rl-context-ai-copy h2{
  margin:0 auto;
  max-width:16.5ch;
  color:#f5f5f7;
  font-size:clamp(40px,5.1vw,74px);
  line-height:.98;
  letter-spacing:-.052em;
  font-weight:450!important;
  text-wrap:balance;
}

.rl-context-ai-copy h2 span,
.rl-context-ai-copy h2 strong{
  display:block;
}

.rl-context-ai-copy h2 strong{
  margin-top:.14em;
  color:#b6a7ff;
  font-weight:500;
}

.rl-context-ai-copy p{
  width:min(100%,680px);
  margin:26px auto 0;
  color:#9299a8;
  font-size:clamp(15px,1.18vw,18px);
  line-height:1.72;
  text-wrap:balance;
}

.rl-context-ai-cta{
  min-width:172px;
  height:52px;
  margin-top:34px;
  padding:0 24px;
  border:1px solid rgba(255,255,255,.82);
  border-radius:999px;
  background:#f5f5f7;
  color:#111218;
  font:600 14px/1 Poppins,system-ui,sans-serif;
  letter-spacing:-.01em;
  cursor:pointer;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  transition:transform .22s ease,box-shadow .22s ease,background .22s ease;
}

.rl-context-ai-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 42px rgba(0,0,0,.24);
}

.rl-context-ai-cta:active{
  transform:translateY(0);
}

.rl-context-ai-cta:focus-visible{
  outline:2px solid #9b84ff;
  outline-offset:4px;
}

html[data-theme="light"] .rl-context-ai-copy h2{
  color:#171920;
}

html[data-theme="light"] .rl-context-ai-copy h2 strong{
  color:#6f54e8;
}

html[data-theme="light"] .rl-context-ai-copy p{
  color:#687184;
}

html[data-theme="light"] .rl-context-ai-cta{
  border-color:#15161b;
  background:#15161b;
  color:#fff;
  box-shadow:0 14px 34px rgba(35,38,52,.15);
}

@media(max-width:900px){
  .rl-context-ai-section{
    min-height:820px;
    margin-top:28px;
    padding:76px 18px 96px;
  }
  .rl-context-ai-shell{
    min-height:650px;
  }
  .rl-context-ai-orb-space{
    width:126px;
    height:126px;
    flex-basis:126px;
    margin-bottom:34px;
  }
  .rl-context-ai-anchor{
    width:116px;
    height:116px;
  }
  .rl-context-ai-copy h2{
    max-width:17ch;
    font-size:clamp(36px,7vw,58px);
  }
}

@media(max-width:620px){
  .rl-context-ai-section{
    min-height:760px;
    margin-top:18px;
    padding:68px 16px 86px;
  }
  .rl-context-ai-shell{
    min-height:610px;
  }
  .rl-context-ai-orb-space{
    width:108px;
    height:108px;
    flex-basis:108px;
    margin-bottom:28px;
  }
  .rl-context-ai-anchor{
    width:98px;
    height:98px;
  }
  .rl-context-ai-kicker{
    margin-bottom:14px;
    font-size:10px;
  }
  .rl-context-ai-copy h2{
    max-width:14.5ch;
    font-size:clamp(32px,10.2vw,47px);
    line-height:1.01;
    letter-spacing:-.045em;
  }
  .rl-context-ai-copy p{
    max-width:35ch;
    margin-top:22px;
    font-size:15px;
    line-height:1.62;
  }
  .rl-context-ai-cta{
    width:min(100%,260px);
    height:52px;
    margin-top:30px;
    font-size:14px;
  }
}

@media(prefers-reduced-motion:reduce){
  .rl-context-ai-copy,
  .rl-context-ai-cta{
    transition:none!important;
  }
}

/* ==========================================================
   RUPTLINE_HOME_PUBLIC_PRICING_R10_2
   ========================================================== */
.rl-public-pricing[hidden]{display:none!important}
.rl-public-pricing{position:fixed;inset:0;z-index:9998;display:grid;place-items:center;padding:24px}
.rl-public-pricing__backdrop{position:absolute;inset:0;border:0;padding:0;background:rgba(4,5,10,.72);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}
.rl-public-pricing__panel{position:relative;z-index:2;width:min(1120px,100%);max-height:min(90vh,900px);overflow:auto;border:1px solid rgba(255,255,255,.09);border-radius:30px;padding:30px;background:rgba(11,12,19,.96);box-shadow:0 40px 120px rgba(0,0,0,.44);color:#f4f5f8}
html[data-theme="light"] .rl-public-pricing__panel{border-color:rgba(20,23,35,.09);background:rgba(250,250,252,.98);color:#171920;box-shadow:0 40px 120px rgba(38,45,67,.18)}
.rl-public-pricing__head{display:flex;align-items:flex-start;justify-content:space-between;gap:28px;margin-bottom:26px}.rl-public-pricing__eyebrow{display:block;margin-bottom:9px;color:#8f73ff;font-size:10px;line-height:1;font-weight:650;letter-spacing:.17em}.rl-public-pricing__head h2{margin:0;max-width:720px;font-size:clamp(28px,3.2vw,46px);line-height:1.04;font-weight:520;letter-spacing:-.035em}.rl-public-pricing__head p{margin:10px 0 0;max-width:680px;color:#979faf;font-size:15px;line-height:1.55}html[data-theme="light"] .rl-public-pricing__head p{color:#697285}.rl-public-pricing__close{width:42px;height:42px;flex:0 0 42px;border:1px solid rgba(255,255,255,.09);border-radius:50%;background:rgba(255,255,255,.04);color:inherit;font:400 26px/1 inherit;cursor:pointer}html[data-theme="light"] .rl-public-pricing__close{border-color:rgba(20,23,35,.09);background:rgba(20,23,35,.03)}
.rl-public-pricing__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.rl-public-plan{position:relative;display:flex;flex-direction:column;min-width:0;min-height:500px;padding:22px;border:1px solid rgba(255,255,255,.08);border-radius:24px;background:rgba(255,255,255,.025)}html[data-theme="light"] .rl-public-plan{border-color:rgba(20,23,35,.08);background:#fff}.rl-public-plan.is-recommended{border-color:rgba(143,115,255,.54);box-shadow:0 22px 64px rgba(98,72,205,.13)}.rl-public-plan__badge{position:absolute;right:18px;top:18px;padding:6px 9px;border-radius:999px;background:rgba(143,115,255,.14);color:#a993ff;font-size:9px;font-weight:700;letter-spacing:.11em}.rl-public-plan__name{display:block;color:inherit;font-size:22px;font-weight:560}.rl-public-plan__position{min-height:43px;margin:7px 0 0;color:#9098aa;font-size:13px;line-height:1.45}html[data-theme="light"] .rl-public-plan__position{color:#697285}.rl-public-plan__price{display:flex;align-items:flex-end;gap:8px;margin-top:26px}.rl-public-plan__price strong{font-size:clamp(36px,4vw,54px);line-height:.92;letter-spacing:-.05em;font-weight:560}.rl-public-plan__price span{padding-bottom:5px;color:#959dae;font-size:12px}.rl-public-plan__after{min-height:22px;margin-top:8px;color:#a4acbc;font-size:12px}.rl-public-plan__ai{margin-top:24px}.rl-public-plan__ai-head{display:flex;justify-content:space-between;gap:12px;margin-bottom:8px;color:#adb4c1;font-size:10px;letter-spacing:.02em}.rl-public-plan__ai-bar{height:5px;overflow:hidden;border-radius:999px;background:rgba(255,255,255,.08)}html[data-theme="light"] .rl-public-plan__ai-bar{background:rgba(20,23,35,.08)}.rl-public-plan__ai-bar i{display:block;width:var(--plan-ai);height:100%;border-radius:inherit;background:linear-gradient(90deg,#7458ef,#ad8cff);box-shadow:0 0 20px rgba(143,115,255,.28)}.rl-public-plan__features{display:grid;gap:10px;margin:24px 0 28px;color:#d3d6de;font-size:13px;line-height:1.42}html[data-theme="light"] .rl-public-plan__features{color:#3e4656}.rl-public-plan__features span{position:relative;padding-left:17px}.rl-public-plan__features span::before{content:"";position:absolute;left:0;top:.54em;width:5px;height:5px;border-radius:50%;background:#8f73ff}.rl-public-plan__cta{width:100%;height:48px;margin-top:auto;border:1px solid rgba(255,255,255,.1);border-radius:999px;background:rgba(255,255,255,.06);color:#fff;font:600 14px/1 inherit;cursor:pointer;transition:transform .18s ease,background .18s ease,border-color .18s ease}.rl-public-plan.is-recommended .rl-public-plan__cta{border-color:transparent;background:linear-gradient(135deg,#7758ee,#aa86ff)}html[data-theme="light"] .rl-public-plan__cta{color:#171920;border-color:rgba(20,23,35,.1);background:rgba(20,23,35,.04)}html[data-theme="light"] .rl-public-plan.is-recommended .rl-public-plan__cta{color:#fff;background:linear-gradient(135deg,#7758ee,#9b78f8)}.rl-public-plan__cta:hover{transform:translateY(-1px)}.rl-public-pricing__note{margin:20px 0 0;color:#7f8798;text-align:center;font-size:11px;line-height:1.45}body.rl-public-pricing-open{overflow:hidden}
@media(max-width:900px){.rl-public-pricing{padding:14px}.rl-public-pricing__panel{padding:22px;border-radius:24px}.rl-public-pricing__grid{grid-template-columns:1fr}.rl-public-plan{min-height:0}.rl-public-plan__position{min-height:0}}
@media(max-width:560px){.rl-public-pricing{padding:8px}.rl-public-pricing__panel{max-height:94vh;padding:18px 14px 16px;border-radius:22px}.rl-public-pricing__head{gap:14px;margin-bottom:18px}.rl-public-pricing__head h2{font-size:28px}.rl-public-pricing__head p{font-size:13px}.rl-public-plan{padding:18px;border-radius:20px}}

/* ==========================================================
   RUPTLINE_PUBLIC_PRICING_DETAILED_R12A
   ========================================================== */
.rl-public-pricing__period{
  display:flex;
  width:max-content;
  margin:0 auto 20px;
  padding:4px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(255,255,255,.025);
}
.rl-public-pricing__period button{
  min-width:118px;
  border:0;
  border-radius:999px;
  padding:9px 14px;
  background:transparent;
  color:#8f97a7;
  font:600 12px/1 inherit;
  cursor:pointer;
}
.rl-public-pricing__period button.is-active{
  background:#f3f0ff;
  color:#17131e;
}
.rl-public-plan__save{
  display:block;
  margin-top:4px;
  color:#a993ff;
}
html[data-theme="light"] .rl-public-pricing__period{
  border-color:rgba(20,23,35,.08);
  background:rgba(20,23,35,.025);
}

/* ==========================================================
   RUPTLINE_HOME_FEED_NIMBO_R1
   ========================================================== */

.rl-r9-instagram{
  width:min(100%,392px);
  background:#f5f2ec!important;
  border-radius:22px!important;
  overflow:hidden;
  box-shadow:0 24px 60px rgba(0,0,0,.24);
}

html[data-theme="light"] .rl-r9-instagram{
  box-shadow:0 24px 60px rgba(30,35,50,.12);
}

.rl-r9-instagram-head{
  padding:12px 16px 4px!important;
}

.rl-r9-instagram-name{
  color:#222834!important;
  font-size:15px!important;
  font-weight:700!important;
  letter-spacing:-.01em;
  text-transform:lowercase;
}

.rl-r9-instagram-name span{
  background:#2f86ff!important;
}

.rl-r9-instagram-profile{
  display:grid!important;
  grid-template-columns:54px minmax(0,1fr)!important;
  gap:12px!important;
  padding:6px 16px 10px!important;
  align-items:start;
}

.rl-r9-profile-photo{
  width:54px!important;
  height:54px!important;
  border-radius:50%!important;
  border:1px solid rgba(14,65,177,.12)!important;
  background:
    radial-gradient(circle at 34% 32%, rgba(255,255,255,.62) 0 16%, rgba(255,255,255,0) 17%),
    linear-gradient(135deg,#0f49b8 0%, #edf0f6 30%, #efe7da 60%, #da4b34 100%)!important;
}

.rl-r9-profile-title{
  color:#2c2e36!important;
  font-size:14px!important;
  line-height:1.25!important;
  font-weight:600!important;
  margin:0 0 4px!important;
}

.rl-r9-profile-stats{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:12px!important;
  color:#303541!important;
  font-size:11px!important;
  line-height:1.35!important;
  margin:0 0 4px!important;
}

.rl-r9-profile-stats strong{
  font-size:14px!important;
  font-weight:700!important;
}

.rl-r9-profile-bio,
.rl-r9-profile-link{
  color:#485062!important;
  font-size:12px!important;
  line-height:1.38!important;
}

.rl-r9-highlights{
  display:flex!important;
  gap:10px!important;
  align-items:center!important;
  padding:0 16px 10px!important;
}

.rl-r9-highlight{
  width:32px!important;
  height:32px!important;
  border-radius:50%!important;
  display:inline-block!important;
  border:3px solid #ece6dd!important;
  box-shadow:none!important;
}

.rl-r9-highlight--plus{
  position:relative;
  background:#fff!important;
  border-color:#ece6dd!important;
}
.rl-r9-highlight--plus::before,
.rl-r9-highlight--plus::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:12px;
  height:2px;
  background:#222834;
  transform:translate(-50%,-50%);
  border-radius:99px;
}
.rl-r9-highlight--plus::after{
  width:2px;
  height:12px;
}

.rl-r9-highlight--1{ background:#0e49b7!important; }
.rl-r9-highlight--2{ background:#efe8dc!important; }
.rl-r9-highlight--3{ background:#e24934!important; }
.rl-r9-highlight--4{ background:#b67d4d!important; }
.rl-r9-highlight--5{ background:#a7b15a!important; }

.rl-r9-feed-grid--brand{
  gap:1px!important;
  background:#fff!important;
}
.rl-r9-feed-grid--brand i{
  border-radius:0!important;
}
.rl-r9-feed-grid--brand .b1,
.rl-r9-feed-grid--brand .b3,
.rl-r9-feed-grid--brand .b5,
.rl-r9-feed-grid--brand .b7{ background:#7fa1c5!important; }
.rl-r9-feed-grid--brand .b2,
.rl-r9-feed-grid--brand .b4,
.rl-r9-feed-grid--brand .b8{ background:#b7aa9d!important; }
.rl-r9-feed-grid--brand .b6{ background:#e24934!important; }
.rl-r9-feed-grid--brand .b9{ background:#ece7de!important; }

.rl-r9-instagram-tabs{
  padding:0 16px 10px!important;
}

.rl-r9-feed-grid--final{
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  gap:1px!important;
  background:#fff!important;
}

.rl-r9-feed-grid--final article{
  position:relative!important;
  aspect-ratio:1 / 1!important;
  min-height:0!important;
  border-radius:0!important;
  overflow:hidden!important;
  background:#e8e4dd!important;
  padding:0!important;
  box-shadow:none!important;
}

.rl-r9-feed-grid--final article img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
}

.rl-r9-feed-grid--final article span,
.rl-r9-feed-grid--final article strong{
  display:none!important;
}

/* ==========================================================
   RUPTLINE_HOME_PRICING_FULLSCREEN_R13
   ========================================================== */

.rl-r13-pricing-host{
  position:fixed!important;
  inset:0!important;
  z-index:999999!important;
  width:100vw!important;
  height:100dvh!important;
  max-width:none!important;
  max-height:none!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  overflow:auto!important;
  background:#050507!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  color:#f6f6f7!important;
}

.rl-r13-pricing{
  min-height:100dvh;
  width:100%;
  padding:34px 26px 28px;
  background:
    radial-gradient(circle at 50% -10%,rgba(119,71,255,.14),transparent 35%),
    #050507;
  color:#f6f6f7;
}

.rl-r13-pricing__top{
  width:min(100%,1180px);
  margin:0 auto 24px;
  display:flex;
  justify-content:flex-end;
}

.rl-r13-pricing__close{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.10);
  border-radius:50%;
  background:rgba(255,255,255,.025);
  color:#aeb2be;
  cursor:pointer;
  transition:.18s ease;
}

.rl-r13-pricing__close:hover{
  color:#fff;
  border-color:rgba(255,255,255,.20);
  background:rgba(255,255,255,.055);
}

.rl-r13-pricing__hero{
  width:min(100%,760px);
  margin:0 auto 20px;
  text-align:center;
}

.rl-r13-pricing__hero h2{
  margin:0;
  color:#f7f7f9;
  font-size:clamp(32px,4.1vw,54px);
  line-height:1;
  letter-spacing:-.047em;
  font-weight:560!important;
}

.rl-r13-pricing__hero p{
  margin:10px auto 0;
  max-width:620px;
  color:#858b99;
  font-size:12.5px;
  line-height:1.55;
}

.rl-r13-billing{
  width:max-content;
  margin:18px auto 24px;
  display:flex;
  gap:3px;
  padding:4px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background:#0c0d12;
}

.rl-r13-billing button{
  position:relative;
  min-width:116px;
  height:36px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:#858b98;
  font:600 10.5px/1 Poppins,system-ui,sans-serif;
  cursor:pointer;
}

.rl-r13-billing button.is-active{
  background:linear-gradient(135deg,#7446eb,#8d5cff);
  color:#fff;
  box-shadow:0 6px 20px rgba(116,70,235,.25);
}

.rl-r13-billing em{
  margin-left:5px;
  padding:3px 5px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:inherit;
  font-style:normal;
  font-size:7px;
  letter-spacing:.04em;
}

.rl-r13-plans{
  width:min(100%,1180px);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  align-items:stretch;
}

.rl-r13-plan{
  position:relative;
  min-width:0;
  display:flex;
  flex-direction:column;
  padding:22px 21px 18px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:20px;
  background:#0c0d12;
  overflow:hidden;
}

.rl-r13-plan--plus{
  border-color:#7345da;
  background:
    linear-gradient(180deg,rgba(97,48,177,.15),transparent 28%),
    #100d17;
  box-shadow:
    0 0 0 1px rgba(116,67,225,.16),
    0 18px 60px rgba(66,31,126,.12);
}

.rl-r13-plan__badge{
  position:absolute;
  top:0;
  left:50%;
  transform:translate(-50%,-50%);
  padding:5px 12px;
  border-radius:999px;
  background:#7b4ee8;
  color:#fff;
  font-size:8px;
  line-height:1;
  font-weight:700;
}

.rl-r13-plan__head{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.rl-r13-plan__icon{
  flex:0 0 auto;
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border:1px solid rgba(125,76,232,.36);
  border-radius:50%;
  color:#8959f4;
  background:rgba(119,71,255,.07);
}

.rl-r13-plan__icon svg{
  width:13px;
  height:13px;
}

.rl-r13-plan__name{
  min-width:0;
}

.rl-r13-plan__name h3{
  margin:0;
  color:#f6f6f8;
  font-size:19px;
  line-height:1.05;
  letter-spacing:-.025em;
  font-weight:600!important;
}

.rl-r13-plan__name p{
  margin:4px 0 0;
  min-height:30px;
  color:#777e8b;
  font-size:9px;
  line-height:1.45;
}

.rl-r13-price{
  margin:15px 0 6px;
  display:flex;
  align-items:flex-end;
  gap:4px;
  min-height:48px;
}

.rl-r13-price strong{
  color:#fff;
  font-size:38px;
  line-height:.9;
  letter-spacing:-.05em;
  font-weight:650;
}

.rl-r13-plan--plus .rl-r13-price strong{
  color:#8c56ff;
}

.rl-r13-price span{
  padding-bottom:4px;
  color:#a3a7b0;
  font-size:9px;
  font-weight:600;
}

.rl-r13-price-note{
  min-height:27px;
  color:#767c88;
  font-size:8.5px;
  line-height:1.4;
}

.rl-r13-divider{
  height:1px;
  margin:14px 0 14px;
  background:rgba(255,255,255,.08);
}

.rl-r13-features{
  display:grid;
  gap:12px;
  margin:0 0 18px;
}

.rl-r13-feature{
  display:grid;
  grid-template-columns:16px minmax(0,1fr);
  gap:8px;
  align-items:start;
}

.rl-r13-feature__icon{
  padding-top:1px;
  color:#8b58f1;
}

.rl-r13-feature__icon svg{
  width:13px;
  height:13px;
  display:block;
}

.rl-r13-feature strong{
  display:block;
  margin:0;
  color:#ececf0;
  font-size:9.3px;
  line-height:1.25;
  font-weight:650;
}

.rl-r13-feature p{
  margin:2px 0 0;
  color:#747a86;
  font-size:7.8px;
  line-height:1.45;
}

.rl-r13-plan__bottom{
  margin-top:auto;
  padding-top:8px;
}

.rl-r13-select{
  width:100%;
  min-height:44px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:10px;
  background:#121319;
  color:#d8d9df;
  font:600 10px/1 Poppins,system-ui,sans-serif;
  cursor:pointer;
  transition:.18s ease;
}

.rl-r13-plan--plus .rl-r13-select{
  border-color:transparent;
  background:linear-gradient(135deg,#6f41dd,#8450ee);
  color:#fff;
}

.rl-r13-select:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
}

.rl-r13-trust{
  width:min(100%,1180px);
  margin:14px auto 0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.rl-r13-trust__item{
  display:grid;
  grid-template-columns:26px minmax(0,1fr);
  gap:9px;
  align-items:center;
  min-height:58px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:13px;
  background:#0c0d12;
}

.rl-r13-trust__icon{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:rgba(119,71,255,.08);
  color:#8756f1;
}

.rl-r13-trust__icon svg{
  width:12px;
  height:12px;
}

.rl-r13-trust__item strong{
  display:block;
  color:#dddfe5;
  font-size:9px;
  line-height:1.25;
}

.rl-r13-trust__item p{
  margin:2px 0 0;
  color:#727886;
  font-size:7.8px;
  line-height:1.35;
}

@media(max-width:980px){
  .rl-r13-pricing{
    padding:22px 18px 28px;
  }

  .rl-r13-plans{
    grid-template-columns:1fr;
    width:min(100%,680px);
  }

  .rl-r13-plan{
    padding:22px;
  }

  .rl-r13-feature p{
    font-size:9px;
  }

  .rl-r13-feature strong{
    font-size:10px;
  }

  .rl-r13-trust{
    width:min(100%,680px);
    grid-template-columns:1fr;
  }
}

@media(max-width:560px){
  .rl-r13-pricing{
    padding:16px 14px 24px;
  }

  .rl-r13-pricing__top{
    margin-bottom:12px;
  }

  .rl-r13-pricing__hero h2{
    font-size:34px;
  }

  .rl-r13-pricing__hero p{
    font-size:11.5px;
  }

  .rl-r13-billing{
    margin-bottom:18px;
  }

  .rl-r13-billing button{
    min-width:104px;
  }

  .rl-r13-plan{
    border-radius:17px;
  }
}

/* ==========================================================
   RUPTLINE_HOME_PRICING_FULLSCREEN_R13_1_BODY_ROOT
   ========================================================== */

body > .rl-r13-pricing-host{
  position:fixed!important;
  inset:0!important;
  left:0!important;
  top:0!important;
  right:0!important;
  bottom:0!important;
  width:100vw!important;
  min-width:100vw!important;
  max-width:none!important;
  height:100dvh!important;
  min-height:100dvh!important;
  max-height:none!important;
  margin:0!important;
  transform:none!important;
  overflow:auto!important;
  overscroll-behavior:contain;
  isolation:isolate;
}

body > .rl-r13-pricing-host[hidden]{
  display:none!important;
}

body > .rl-r13-pricing-host > .rl-r13-pricing{
  width:100%!important;
  min-width:0!important;
  max-width:none!important;
  min-height:100dvh!important;
}

body > .rl-r13-pricing-host .rl-r13-plans,
body > .rl-r13-pricing-host .rl-r13-trust,
body > .rl-r13-pricing-host .rl-r13-pricing__top{
  width:min(calc(100vw - 52px),1180px)!important;
  max-width:1180px!important;
}

@media(max-width:980px){
  body > .rl-r13-pricing-host .rl-r13-plans,
  body > .rl-r13-pricing-host .rl-r13-trust,
  body > .rl-r13-pricing-host .rl-r13-pricing__top{
    width:min(calc(100vw - 36px),680px)!important;
  }
}

@media(max-width:560px){
  body > .rl-r13-pricing-host .rl-r13-plans,
  body > .rl-r13-pricing-host .rl-r13-trust,
  body > .rl-r13-pricing-host .rl-r13-pricing__top{
    width:calc(100vw - 28px)!important;
  }
}

/* ==========================================================
   RUPTLINE_HOME_PRICING_TYPOGRAPHY_R13_2
   ========================================================== */

.rl-r13-feature strong{
  display:block;
  margin:0;
  color:#ececf0;
  font-size:13.3px;
  line-height:1.25;
  font-weight:650;
}

.rl-r13-feature p{
  margin:2px 0 0;
  color:#747a86;
  font-size:11.8px;
  line-height:1.45;
}

/* ==========================================================
   RUPTLINE_HOME_PRICING_BADGE_R13_4
   ========================================================== */

.rl-r13-plan{
  overflow:visible!important;
}

.rl-r13-plan--plus{
  position:relative;
}

.rl-r13-plan__badge{
  top:-10px!important;
  left:50%!important;
  transform:translate(-50%,-50%)!important;
  z-index:5!important;
  white-space:nowrap;
}

/* ==========================================================
   RUPTLINE_HOME_PUBLIC_FOOTER_R14
   ========================================================== */

.rl-footer-r14{
  position:relative;
  width:100%;
  margin:0;
  padding:0;
  background:#000;
  color:#fff;
  border-top:1px solid rgba(255,255,255,.06);
}

.rl-footer-r14__shell{
  width:min(calc(100% - 48px),1240px);
  margin:0 auto;
  padding:56px 0 26px;
}

.rl-footer-r14__brand{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:32px;
  padding-bottom:38px;
  border-bottom:1px solid rgba(255,255,255,.07);
}

.rl-footer-r14__logo{
  display:block;
  width:112px;
  height:auto;
}

.rl-footer-r14__tagline{
  max-width:360px;
  margin:2px 0 0;
  color:#777d89;
  font-size:12.5px;
  line-height:1.55;
  text-align:right;
}

.rl-footer-r14__grid{
  display:grid;
  grid-template-columns:1.05fr 1.5fr .9fr 1fr;
  gap:44px;
  padding:40px 0 42px;
}

.rl-footer-r14__col{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  min-width:0;
}

.rl-footer-r14__col strong{
  display:block;
  margin-bottom:5px;
  color:#f2f3f6;
  font-size:11px;
  line-height:1;
  font-weight:650;
  letter-spacing:.04em;
}

.rl-footer-r14__col a{
  display:inline-block;
  color:#777d89;
  font-size:11.5px;
  line-height:1.45;
  font-weight:400;
  text-decoration:none;
  transition:color .18s ease,transform .18s ease;
}

.rl-footer-r14__col a:hover{
  color:#fff;
  transform:translateX(2px);
}

.rl-footer-r14__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.07);
  color:#555b66;
  font-size:10px;
  line-height:1.5;
}

@media(max-width:900px){
  .rl-footer-r14__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:34px 42px;
  }
}

@media(max-width:620px){
  .rl-footer-r14__shell{
    width:min(calc(100% - 30px),1240px);
    padding:42px 0 22px;
  }

  .rl-footer-r14__brand{
    flex-direction:column;
    gap:16px;
    padding-bottom:30px;
  }

  .rl-footer-r14__tagline{
    max-width:280px;
    text-align:left;
  }

  .rl-footer-r14__grid{
    grid-template-columns:1fr 1fr;
    gap:32px 20px;
    padding:34px 0;
  }

  .rl-footer-r14__bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
}

@media(max-width:420px){
  .rl-footer-r14__grid{grid-template-columns:1fr}
}

/* ==========================================================
   RUPTLINE_PUBLIC_SHELL_HEADER_R15
   ========================================================== */

.rl-public-header-r15{overflow:visible!important}

.rl-public-nav-r15{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  margin-left:auto;
  margin-right:18px;
}

.rl-public-nav-r15__link{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:0 11px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:rgba(255,255,255,.72);
  text-decoration:none;
  font:500 12px/1 Poppins,system-ui,sans-serif;
  cursor:pointer;
}

.rl-public-nav-r15__link:hover,
.rl-public-menu-r15.is-open > .rl-public-nav-r15__link{
  color:#fff;
  background:rgba(255,255,255,.055);
}

.rl-public-nav-r15__button{appearance:none}

.rl-public-nav-r15__chevron{
  width:6px;height:6px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
  opacity:.7;
}

.rl-public-menu-r15{position:relative}

.rl-public-mega-r15,
.rl-public-pop-r15{
  position:absolute;
  top:calc(100% + 12px);
  left:50%;
  transform:translate(-50%,-8px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  border:1px solid rgba(255,255,255,.09);
  background:#0b0c11;
  box-shadow:0 26px 70px rgba(0,0,0,.34);
  transition:.16s ease;
}

.rl-public-menu-r15.is-open > .rl-public-mega-r15,
.rl-public-menu-r15.is-open > .rl-public-pop-r15{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%,0);
}

.rl-public-mega-r15{
  width:min(720px,calc(100vw - 36px));
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  border-radius:20px;
  overflow:hidden;
}

.rl-public-mega-r15__intro{
  padding:24px 22px;
  background:radial-gradient(circle at 0 0,rgba(117,71,255,.18),transparent 65%),#101118;
  border-right:1px solid rgba(255,255,255,.07);
}

.rl-public-mega-r15__intro > span,
.rl-public-mega-r15__group > span{
  display:block;
  color:#7654df;
  font-size:9px;
  font-weight:700;
  letter-spacing:.12em;
}

.rl-public-mega-r15__intro strong{
  display:block;
  margin:10px 0 6px;
  color:#fff;
  font-size:18px;
  font-weight:560;
}

.rl-public-mega-r15__intro p{
  margin:0;
  color:#737986;
  font-size:10px;
  line-height:1.55;
}

.rl-public-mega-r15__intro a{
  display:inline-flex;
  margin-top:22px;
  color:#b8a5ff;
  font-size:10px;
  font-weight:600;
  text-decoration:none;
}

.rl-public-mega-r15__groups{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  padding:24px;
}

.rl-public-mega-r15__group > span{
  margin-bottom:10px;
  color:#686e7a;
}

.rl-public-mega-r15__group a,
.rl-public-pop-r15 a{
  display:block;
  padding:9px 10px;
  margin:0 -10px;
  border-radius:11px;
  text-decoration:none;
}

.rl-public-mega-r15__group a:hover,
.rl-public-pop-r15 a:hover{
  background:rgba(255,255,255,.055);
}

.rl-public-mega-r15__group strong,
.rl-public-pop-r15 strong{
  display:block;
  color:#e9eaf0;
  font-size:10.5px;
  line-height:1.35;
  font-weight:580;
}

.rl-public-mega-r15__group small,
.rl-public-pop-r15 small{
  display:block;
  margin-top:2px;
  color:#6f7581;
  font-size:8.5px;
  line-height:1.4;
}

.rl-public-menu-r15--compact .rl-public-pop-r15{width:250px}
.rl-public-pop-r15{padding:10px;border-radius:16px}

.rl-public-mobile-toggle-r15{
  display:none;
  width:38px;height:38px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:50%;
  background:transparent;
  color:#fff;
  cursor:pointer;
}

.rl-public-mobile-toggle-r15 span{
  display:block;width:14px;height:1px;
  margin:4px auto;background:currentColor;
}

.rl-public-mobile-r15{display:none}

@media(max-width:980px){
  .rl-public-nav-r15{display:none}
  .rl-public-header-r15__login{display:none!important}
  .rl-public-header-r15__register{display:none!important}
  .rl-public-mobile-toggle-r15{display:block}

  .rl-public-mobile-r15{
    position:absolute;
    left:14px;right:14px;
    top:calc(100% + 8px);
    max-height:calc(100dvh - 92px);
    overflow:auto;
    padding:8px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:18px;
    background:#0a0b10;
    box-shadow:0 24px 70px rgba(0,0,0,.34);
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    pointer-events:none;
    transition:.18s ease;
  }

  .rl-public-header-r15.is-mobile-open .rl-public-mobile-r15{
    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;
  }

  .rl-public-mobile-r15 nav{display:grid;gap:2px}

  .rl-public-mobile-r15 nav > a,
  .rl-public-mobile-r15 summary{
    min-height:46px;
    display:flex;
    align-items:center;
    padding:0 13px;
    border-radius:11px;
    color:#e4e5e9;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
    cursor:pointer;
    list-style:none;
  }

  .rl-public-mobile-r15 details > div{
    display:grid;
    padding:2px 10px 8px 20px;
  }

  .rl-public-mobile-r15 details > div a{
    padding:8px 0;
    color:#777e8c;
    text-decoration:none;
    font-size:11px;
  }

  .rl-public-mobile-r15__auth{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    padding:12px 6px 6px;
    border-top:1px solid rgba(255,255,255,.07);
    margin-top:6px;
  }

  .rl-public-mobile-r15__auth button{
    min-height:42px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:999px;
    background:transparent;
    color:#fff;
    font:600 11px/1 Poppins,system-ui,sans-serif;
  }

  .rl-public-mobile-r15__auth button:last-child{
    border-color:transparent;
    background:#fff;
    color:#111318;
  }
}

/* ==========================================================
   RUPTLINE_PUBLIC_HIDE_DEMOS_R15_1
   ========================================================== */

.rl-footer-r14__grid{
  grid-template-columns:1.05fr 1.55fr 1fr!important;
}

@media(max-width:900px){
  .rl-footer-r14__grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
}

@media(max-width:720px){
  .rl-footer-r14__grid{
    grid-template-columns:1fr 1fr!important;
  }
}

@media(max-width:420px){
  .rl-footer-r14__grid{
    grid-template-columns:1fr!important;
  }
}

/* ==========================================================
   RUPTLINE_PUBLIC_WEB_UNIFY_R3
   ========================================================== */

/* Header idéntico en todas las páginas públicas */
.rl-public-header-r15{
  overflow:visible!important;
}

/* Herramientas: negro, ancho y tres columnas reales */
.rl-public-mega-r15{
  width:min(1040px,calc(100vw - 36px))!important;
  grid-template-columns:190px minmax(0,1fr)!important;
  background:#000!important;
  border-color:rgba(255,255,255,.10)!important;
  box-shadow:0 28px 86px rgba(0,0,0,.52)!important;
}

.rl-public-mega-r15__intro{
  background:#000!important;
  border-right:1px solid rgba(255,255,255,.08)!important;
}

.rl-public-mega-r15__groups{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:22px!important;
  padding:26px 28px!important;
  background:#000!important;
}

.rl-public-mega-r15__group a:hover{
  background:rgba(255,255,255,.065)!important;
}

.rl-public-mega-r15__group strong{
  color:#f0f0f3!important;
}

.rl-public-mega-r15__group small{
  color:#707681!important;
}

/* El mega menú se mantiene negro incluso si la página está en modo claro */
html[data-theme="light"] .rl-public-mega-r15,
html[data-theme="light"] .rl-public-mega-r15__intro,
html[data-theme="light"] .rl-public-mega-r15__groups,
html[data-ally-theme="light"] .rl-public-mega-r15,
html[data-ally-theme="light"] .rl-public-mega-r15__intro,
html[data-ally-theme="light"] .rl-public-mega-r15__groups{
  background:#000!important;
}

html[data-theme="light"] .rl-public-mega-r15__intro strong,
html[data-theme="light"] .rl-public-mega-r15__group strong,
html[data-ally-theme="light"] .rl-public-mega-r15__intro strong,
html[data-ally-theme="light"] .rl-public-mega-r15__group strong{
  color:#f0f0f3!important;
}

/* Un solo footer: negro y tres columnas */
.rl-public-site-footer-r3{
  background:#000!important;
  color:#fff!important;
}

.rl-public-site-footer-r3 .rl-footer-r14__grid{
  grid-template-columns:1.05fr 1.55fr 1fr!important;
}

@media(max-width:900px){
  .rl-public-site-footer-r3 .rl-footer-r14__grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
}

@media(max-width:720px){
  .rl-public-site-footer-r3 .rl-footer-r14__grid{
    grid-template-columns:1fr 1fr!important;
  }
}

@media(max-width:420px){
  .rl-public-site-footer-r3 .rl-footer-r14__grid{
    grid-template-columns:1fr!important;
  }
}

/* ==========================================================
   RUPTLINE_HOME_WAVES_ORB_CTA_R1_1
   CTA mínimo: logo real 1 Waves + "Conoce".
   ========================================================== */

.rl-orb-side{
  position:relative;
}

.rl-home-waves-cta{
  position:absolute;
  left:50%;
  top:50%;
  z-index:60;
  transform:translate(-50%,-188px);
  min-height:32px;
  padding:5px 10px 5px 9px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(143,115,255,.48);
  border-radius:999px;
  background:rgba(110,78,220,.055);
  color:#b8a8ff;
  text-decoration:none;
  white-space:nowrap;
  box-shadow:0 0 0 1px rgba(143,115,255,.025) inset,0 8px 26px rgba(74,48,160,.08);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  transition:transform .20s ease,border-color .20s ease,background .20s ease,box-shadow .20s ease;
  pointer-events:auto;
}

.rl-home-waves-cta:hover{
  transform:translate(-50%,-190px);
  border-color:rgba(154,130,255,.72);
  background:rgba(122,92,255,.09);
  box-shadow:0 0 0 1px rgba(143,115,255,.04) inset,0 10px 32px rgba(91,62,190,.13);
}

.rl-home-waves-cta:focus-visible{
  outline:2px solid rgba(161,137,255,.78);
  outline-offset:3px;
}

.rl-home-waves-cta__logo{
  display:grid;
  place-items:center;
  width:78px;
  height:19px;
  flex:0 0 78px;
}

.rl-home-waves-cta__logo-img{
  grid-column:1;
  grid-row:1;
  display:block;
  width:78px;
  height:auto;
}

.rl-home-waves-cta__logo-img--light{display:none;}

html[data-theme="light"] .rl-home-waves-cta{
  border-color:rgba(101,72,218,.42);
  background:rgba(112,82,225,.045);
  color:#6348cc;
  box-shadow:0 0 0 1px rgba(103,73,214,.02) inset,0 8px 24px rgba(81,61,160,.06);
}

html[data-theme="light"] .rl-home-waves-cta:hover{
  border-color:rgba(101,72,218,.64);
  background:rgba(112,82,225,.075);
}

html[data-theme="light"] .rl-home-waves-cta__logo-img--dark{display:none;}
html[data-theme="light"] .rl-home-waves-cta__logo-img--light{display:block;}

.rl-home-waves-cta__label{
  font-size:10px;
  line-height:1;
  font-weight:500;
  letter-spacing:.015em;
}

@media(max-width:1060px){
  .rl-home-waves-cta{transform:translate(-50%,-162px);}
  .rl-home-waves-cta:hover{transform:translate(-50%,-164px);}
}

@media(max-width:760px){
  .rl-home-waves-cta{
    min-height:30px;
    padding:5px 9px 5px 8px;
    gap:7px;
    transform:translate(-50%,-154px);
  }
  .rl-home-waves-cta:hover{transform:translate(-50%,-156px);}
  .rl-home-waves-cta__logo,.rl-home-waves-cta__logo-img{width:70px;}
  .rl-home-waves-cta__logo{flex-basis:70px;height:17px;}
  .rl-home-waves-cta__label{font-size:9.5px;}
}

@media(prefers-reduced-motion:reduce){
  .rl-home-waves-cta{transition:none;}
}
