:root{
  --ra-bg:#090d18;
  --ra-bg-soft:#0f1524;
  --ra-surface:#141b2d;
  --ra-surface-2:#1a2236;
  --ra-border:rgba(255,255,255,.1);
  --ra-text:#f8fafc;
  --ra-muted:#9ca8be;
  --ra-primary:#5c6cff;
  --ra-primary-2:#8b5cf6;
  --ra-accent:#db5da7;
  --ra-success:#2dd4bf;
  --ra-shadow:0 30px 80px rgba(0,0,0,.35);
  --ra-radius:24px;
  --ra-container:1240px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Manrope,sans-serif;
  background:var(--ra-bg);
  color:var(--ra-text);
  line-height:1.6;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.045;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}

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

img{
  display:block;
  max-width:100%;
}

button{
  font:inherit;
}

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

.ra-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(9,13,24,.76);
  border-bottom:1px solid transparent;
  backdrop-filter:blur(18px);
  transition:.25s ease;
}

.ra-header.scrolled{
  background:rgba(9,13,24,.94);
  border-color:var(--ra-border);
}

.ra-nav{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.ra-brand img{
  width:166px;
  height:auto;
}

.ra-nav-links{
  display:flex;
  align-items:center;
  gap:34px;
  color:#cbd5e1;
  font-size:14px;
  font-weight:700;
}

.ra-nav-links a{
  transition:.2s ease;
}

.ra-nav-links a:hover,
.ra-nav-links a.active{
  color:#fff;
}

.ra-access{
  padding:11px 18px;
  border:1px solid var(--ra-border);
  border-radius:13px;
  background:rgba(255,255,255,.035);
}

.ra-mobile-toggle{
  display:none;
  border:0;
  background:none;
  color:#fff;
  font-size:27px;
}

.ra-profile-hero{
  position:relative;
  overflow:hidden;
  padding:88px 0 78px;
  background:
    radial-gradient(
      circle at 80% 12%,
      rgba(219,93,167,.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 22% 88%,
      rgba(92,108,255,.17),
      transparent 36%
    );
}

.ra-profile-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  pointer-events:none;
}

.ra-glow-one{
  width:460px;
  height:460px;
  left:-180px;
  bottom:-250px;
  background:rgba(92,108,255,.18);
}

.ra-glow-two{
  width:380px;
  height:380px;
  right:-120px;
  top:10px;
  background:rgba(219,93,167,.12);
}

.ra-profile-card{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(360px,.8fr);
  gap:60px;
  align-items:center;
  min-height:510px;
  padding:58px;
  overflow:hidden;
  border:1px solid var(--ra-border);
  border-radius:32px;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.02)
    );
  box-shadow:var(--ra-shadow);
}

.ra-profile-card:before{
  content:"";
  position:absolute;
  inset:auto -15% -60% 28%;
  height:450px;
  border-radius:50%;
  background:rgba(124,92,255,.13);
  filter:blur(55px);
}

.ra-profile-copy,
.ra-profile-photo-area{
  position:relative;
}

.ra-kicker{
  color:#a78bfa;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.ra-profile-copy h1{
  max-width:760px;
  margin:14px 0 14px;
  font-size:clamp(52px,6vw,82px);
  line-height:.98;
  letter-spacing:-.055em;
}

.ra-profile-meta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin:0 0 23px;
  color:#cbd5e1;
  font-size:14px;
}

.ra-profile-meta span{
  display:flex;
  align-items:center;
  gap:7px;
}

.ra-profile-meta i{
  color:#a78bfa;
}

.ra-profile-intro{
  max-width:720px;
  margin:0;
  color:var(--ra-muted);
  font-size:17px;
}

.ra-profile-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}

.ra-btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:0 21px;
  border-radius:14px;
  border:1px solid transparent;
  font-size:14px;
  font-weight:800;
  transition:.24s ease;
}

.ra-btn:hover{
  transform:translateY(-2px);
}

.ra-btn-primary{
  color:#fff;
  background:linear-gradient(
    135deg,
    var(--ra-primary),
    var(--ra-primary-2)
  );
  box-shadow:0 14px 38px rgba(92,108,255,.25);
}

.ra-btn-secondary{
  color:#fff;
  border-color:var(--ra-border);
  background:rgba(255,255,255,.04);
}

.ra-specialties{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:26px;
}

.ra-specialties span{
  padding:7px 10px;
  border-radius:999px;
  color:#cbd5e1;
  background:rgba(255,255,255,.035);
  border:1px solid var(--ra-border);
  font-size:11px;
}

.ra-profile-photo-area{
  min-height:390px;
  display:grid;
  place-items:center;
}

.ra-profile-photo-shell{
  width:310px;
  height:360px;
  overflow:hidden;
  display:grid;
  place-items:center;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(
      135deg,
      rgba(92,108,255,.8),
      rgba(219,93,167,.7)
    );
  box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.ra-profile-photo-shell img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.ra-profile-photo-shell>span{
  font-size:120px;
  font-weight:800;
  color:#fff;
}

.ra-profile-float{
  position:absolute;
  min-width:155px;
  padding:15px;
  border-radius:16px;
  border:1px solid var(--ra-border);
  background:rgba(20,27,45,.9);
  box-shadow:var(--ra-shadow);
  backdrop-filter:blur(16px);
}

.ra-profile-float small,
.ra-profile-float span{
  display:block;
  color:var(--ra-muted);
  font-size:10px;
}

.ra-profile-float strong{
  display:block;
  margin:2px 0;
}

.ra-profile-float-one{
  left:-8px;
  bottom:30px;
}

.ra-profile-float-one strong{
  font-size:28px;
}

.ra-profile-float-two{
  right:-4px;
  top:26px;
  display:flex;
  align-items:center;
  gap:10px;
}

.ra-profile-float-two>i{
  color:#99f6e4;
  font-size:25px;
}

.ra-stats{
  border-top:1px solid var(--ra-border);
  border-bottom:1px solid var(--ra-border);
}

.ra-stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.ra-stats article{
  position:relative;
  padding:30px 25px;
  border-right:1px solid var(--ra-border);
}

.ra-stats article:last-child{
  border-right:0;
}

.ra-stats article>i{
  position:absolute;
  right:22px;
  top:22px;
  color:#748197;
  font-size:27px;
}

.ra-stats strong{
  display:block;
  font-size:30px;
}

.ra-stats span{
  color:var(--ra-muted);
  font-size:13px;
}

.ra-about{
  padding:110px 0;
}

.ra-about-grid{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);
  gap:24px;
  align-items:start;
}

.ra-about-panel,
.ra-connect-panel{
  padding:34px;
  border-radius:26px;
  border:1px solid var(--ra-border);
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.018)
    );
}

.ra-about-panel h2,
.ra-connect-panel h2{
  margin:7px 0 24px;
  font-size:32px;
  letter-spacing:-.035em;
}

.ra-bio{
  color:#c4cddd;
  font-size:15px;
  line-height:1.85;
}

.ra-bio-empty{
  color:var(--ra-muted);
}

.ra-specialty-list{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid var(--ra-border);
}

.ra-specialty-list span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 11px;
  border-radius:999px;
  color:#d8d2ff;
  background:rgba(124,92,255,.1);
  border:1px solid rgba(167,139,250,.2);
  font-size:11px;
}

.ra-social-links{
  display:grid;
  gap:9px;
}

.ra-social-links a{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:11px;
  align-items:center;
  min-height:50px;
  padding:0 14px;
  border-radius:13px;
  border:1px solid var(--ra-border);
  background:rgba(255,255,255,.025);
  color:#c9d1df;
  font-size:13px;
  font-weight:700;
  transition:.22s ease;
}

.ra-social-links a:hover{
  transform:translateX(3px);
  color:#fff;
  border-color:rgba(167,139,250,.4);
}

.ra-social-links a>i:first-child{
  color:#a78bfa;
  font-size:20px;
}

.ra-social-links a>i:last-child{
  color:#66738a;
}

.ra-contact-link{
  margin-top:8px;
  color:#fff!important;
  background:linear-gradient(
    135deg,
    rgba(92,108,255,.3),
    rgba(139,92,246,.22)
  )!important;
  border-color:rgba(167,139,250,.4)!important;
}

.ra-catalog{
  padding:110px 0;
  background:var(--ra-bg-soft);
}

.ra-section-heading{
  display:flex;
  justify-content:space-between;
  gap:35px;
  align-items:end;
  margin-bottom:36px;
}

.ra-section-heading h2{
  margin:7px 0 7px;
  font-size:clamp(36px,4vw,54px);
  line-height:1.06;
  letter-spacing:-.04em;
}

.ra-section-heading p{
  max-width:620px;
  margin:0;
  color:var(--ra-muted);
}

.ra-catalog-count{
  padding:10px 14px;
  border-radius:999px;
  color:#d8d2ff;
  background:rgba(124,92,255,.1);
  border:1px solid rgba(167,139,250,.2);
  font-size:12px;
  font-weight:800;
}

.ra-work-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.ra-work-card{
  overflow:hidden;
  border-radius:22px;
  border:1px solid var(--ra-border);
  background:var(--ra-surface);
  transition:.25s ease;
}

.ra-work-card:hover{
  transform:translateY(-6px);
  border-color:rgba(167,139,250,.42);
  box-shadow:var(--ra-shadow);
}

.ra-work-media{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
  background:#111827;
}

.ra-work-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.35s ease;
}

.ra-work-card:hover .ra-work-media img{
  transform:scale(1.035);
}

.ra-work-placeholder{
  height:100%;
  display:grid;
  place-items:center;
  color:#a78bfa;
  font-size:52px;
  background:linear-gradient(
    135deg,
    #243b67,
    #4c1d95
  );
}

.ra-play{
  position:absolute;
  right:17px;
  bottom:17px;
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  color:#101827;
  box-shadow:0 14px 32px rgba(0,0,0,.36);
  cursor:pointer;
  z-index:5;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    color .18s ease;
}

.ra-play:hover{
  transform:scale(1.07);
  box-shadow:0 16px 38px rgba(0,0,0,.42);
}

.ra-play:focus-visible{
  outline:3px solid rgba(255,255,255,.58);
  outline-offset:3px;
}

.ra-play.is-playing{
  background:linear-gradient(
    135deg,
    var(--ra-primary),
    var(--ra-primary-2)
  );
  color:#fff;
}

.ra-available{
  position:absolute;
  left:16px;
  top:16px;
  padding:7px 10px;
  border-radius:999px;
  color:#99f6e4;
  background:rgba(7,35,34,.8);
  border:1px solid rgba(45,212,191,.28);
  backdrop-filter:blur(10px);
  font-size:10px;
  font-weight:800;
}

.ra-work-body{
  padding:20px;
}

.ra-work-kicker{
  color:#a78bfa;
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.ra-work-body h3{
  margin:7px 0 5px;
  font-size:21px;
  line-height:1.2;
}

.ra-work-body>p{
  margin:0;
  color:var(--ra-muted);
  font-size:13px;
}

.ra-work-badges{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  margin-top:14px;
}

.ra-work-badges span{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:6px 9px;
  border-radius:999px;
  color:#99f6e4;
  background:rgba(45,212,191,.1);
  border:1px solid rgba(45,212,191,.18);
  font-size:10px;
}

.ra-card-footer{
  margin-top:17px;
  padding-top:15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid var(--ra-border);
  color:#c4b5fd;
  font-size:12px;
  font-weight:800;
}

.ra-empty{
  min-height:340px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px;
  border:1px dashed rgba(255,255,255,.16);
  border-radius:24px;
  background:rgba(255,255,255,.02);
}

.ra-empty-icon{
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  border-radius:20px;
  color:#c4b5fd;
  background:rgba(124,92,255,.12);
  font-size:30px;
}

.ra-empty h3{
  margin:22px 0 8px;
  font-size:25px;
}

.ra-empty p{
  margin:0;
  color:var(--ra-muted);
}

.ra-cta{
  padding:90px 0 115px;
}

.ra-cta-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:48px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(219,93,167,.25),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #1c2540,
      #161d30
    );
}

.ra-cta-card h2{
  max-width:760px;
  margin:9px 0;
  font-size:clamp(32px,4vw,49px);
  line-height:1.07;
  letter-spacing:-.04em;
}

.ra-cta-card p{
  margin:0;
  color:var(--ra-muted);
}

.ra-footer{
  padding:60px 0 22px;
  border-top:1px solid var(--ra-border);
}

.ra-footer-grid{
  display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);
  gap:40px;
}

.ra-footer img{
  width:166px;
  height:auto;
  margin-bottom:16px;
}

.ra-footer p{
  max-width:280px;
  color:var(--ra-muted);
}

.ra-footer strong{
  display:block;
  margin-bottom:14px;
}

.ra-footer a{
  display:block;
  margin:8px 0;
  color:var(--ra-muted);
  font-size:14px;
}

.ra-footer a:hover{
  color:#fff;
}

.ra-footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:42px;
  padding-top:20px;
  border-top:1px solid var(--ra-border);
  color:#64748b;
  font-size:13px;
}

@media(max-width:980px){
  .ra-profile-card{
    grid-template-columns:1fr;
  }

  .ra-profile-photo-area{
    order:-1;
  }

  .ra-about-grid{
    grid-template-columns:1fr;
  }

  .ra-work-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ra-stats-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .ra-stats article:nth-child(2){
    border-right:0;
  }

  .ra-stats article:nth-child(-n+2){
    border-bottom:1px solid var(--ra-border);
  }
}

@media(max-width:760px){
  .ra-nav{
    height:82px;
  }

  .ra-brand img{
    width:145px;
  }

  .ra-nav-links{
    display:none;
    position:absolute;
    left:18px;
    right:18px;
    top:74px;
    flex-direction:column;
    align-items:stretch;
    gap:16px;
    padding:18px;
    border:1px solid var(--ra-border);
    border-radius:18px;
    background:#0f1524;
  }

  .ra-nav-links.open{
    display:flex;
  }

  .ra-mobile-toggle{
    display:block;
  }

  .ra-profile-hero{
    padding:54px 0;
  }

  .ra-profile-card{
    min-height:auto;
    padding:28px;
    border-radius:24px;
  }

  .ra-profile-copy h1{
    font-size:48px;
  }

  .ra-profile-actions{
    flex-direction:column;
  }

  .ra-btn{
    width:100%;
  }

  .ra-profile-photo-shell{
    width:min(290px,82vw);
    height:335px;
  }

  .ra-profile-float-two{
    right:0;
  }

  .ra-section-heading{
    display:block;
  }

  .ra-catalog-count{
    display:inline-block;
    margin-top:16px;
  }

  .ra-work-grid{
    grid-template-columns:1fr;
  }

  .ra-cta-card{
    display:block;
    padding:32px;
  }

  .ra-cta-card .ra-btn{
    margin-top:24px;
  }

  .ra-footer-grid{
    grid-template-columns:1fr;
  }

  .ra-footer-bottom{
    display:block;
  }
}

@media(max-width:520px){
  .ra-container{
    width:min(100% - 28px,var(--ra-container));
  }

  .ra-profile-meta{
    display:grid;
  }

  .ra-stats-grid{
    grid-template-columns:1fr 1fr;
  }

  .ra-profile-float-one{
    left:-2px;
  }

  .ra-profile-float-two{
    top:18px;
  }
}

/* Iconos propios para preview de audio */
.ra-play i{
  display:none;
}

.ra-play::before{
  content:"";
  width:0;
  height:0;
  border-top:8px solid transparent;
  border-bottom:8px solid transparent;
  border-left:13px solid currentColor;
  margin-left:3px;
}

.ra-play.is-playing::before{
  width:4px;
  height:16px;
  border:0;
  margin-left:-7px;
  background:currentColor;
  box-shadow:8px 0 0 currentColor;
}
