  :root {
    --void: #1a0800;
    --bg-deep: #0f0500;
    --plasma: #ff7a00;
    --aurora: #ff4500;
    --fire: #ffb800;
    --solar: #ff6b00;
    --ice: #ff9500;
    --white: #fff8f0;
    --muted: rgba(255,248,240,0.5);
  }

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

  body {
    background: var(--bg-deep);
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    cursor: none;
  }

  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--plasma);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, background 0.3s;
    box-shadow: 0 0 18px var(--plasma), 0 0 40px var(--plasma);
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1.5px solid var(--plasma);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform 0.18s ease, width 0.2s, height 0.2s, border-color 0.3s;
    opacity: 0.6;
  }

  .galaxy {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
  }
  .nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: drift 20s ease-in-out infinite alternate;
  }
  .nebula-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,100,0,0.28) 0%, transparent 70%);
    top: -100px; left: -200px;
    animation-duration: 25s;
  }
  .nebula-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,184,0,0.18) 0%, transparent 70%);
    bottom: 0; right: -100px;
    animation-duration: 18s; animation-delay: -8s;
  }
  .nebula-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,60,0,0.14) 0%, transparent 70%);
    top: 40%; left: 30%;
    animation-duration: 22s; animation-delay: -4s;
  }

  @keyframes drift {
    from { transform: translate(0,0) scale(1); }
    to { transform: translate(40px,30px) scale(1.08); }
  }

  .stars-layer {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(1px 1px at 10% 15%, rgba(255,200,100,0.8) 0%, transparent 100%),
      radial-gradient(1px 1px at 25% 40%, rgba(255,255,200,0.5) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 45% 10%, rgba(255,150,0,0.8) 0%, transparent 100%),
      radial-gradient(1px 1px at 60% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
      radial-gradient(1px 1px at 75% 25%, rgba(255,200,100,0.5) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 85% 80%, rgba(255,100,0,0.8) 0%, transparent 100%),
      radial-gradient(1px 1px at 90% 45%, rgba(255,255,200,0.5) 0%, transparent 100%),
      radial-gradient(1px 1px at 15% 75%, rgba(255,184,0,0.7) 0%, transparent 100%),
      radial-gradient(1px 1px at 35% 85%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 55% 50%, rgba(255,120,0,0.6) 0%, transparent 100%);
    animation: twinkle 6s ease-in-out infinite alternate;
  }
  @keyframes twinkle {
    from { opacity: 0.6; }
    to { opacity: 1; }
  }

  .grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,122,0,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,122,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
  }

  .wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 520px;
    padding: 60px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  /* LOGO EMPRESA ARRIBA */
  .brand-logo {
    width: 140px;
    height: 140px;
    border-radius: 28px;
    object-fit: contain;
    margin-bottom: 20px;
    animation: float 5s ease-in-out infinite, fadeUp 0.7s both;
    filter: drop-shadow(0 0 30px rgba(255,122,0,0.5));
    background: rgba(255,255,255,0.05);
    padding: 8px;
    border: 2px solid rgba(255,122,0,0.3);
  }

  .profile-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 8vw, 3.2rem);
    letter-spacing: 0.08em;
    line-height: 1;
    background: linear-gradient(90deg, var(--plasma), var(--fire), var(--aurora));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 20px rgba(255,122,0,0.5));
    animation: fadeUp 0.7s 0.1s both;
  }

  .profile-handle {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--plasma);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 0.8;
    animation: fadeUp 0.7s 0.18s both;
  }

  .profile-bio {
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    text-align: center;
    max-width: 320px;
    line-height: 1.65;
    margin-bottom: 36px;
    animation: fadeUp 0.7s 0.24s both;
  }

  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 122, 0, 0.4);
    margin-bottom: 16px;
    align-self: flex-start;
    padding-left: 4px;
  }

  /* LINK CARDS */
  .links-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .link-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
    cursor: none;
    animation: cardIn 0.6s both;
    border: 1px solid transparent;
    background: rgba(255,255,255,0.04);
  }

  @keyframes cardIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .link-card:nth-child(1) { animation-delay: 0.1s; }
  .link-card:nth-child(2) { animation-delay: 0.18s; }
  .link-card:nth-child(3) { animation-delay: 0.26s; }
  .link-card:nth-child(4) { animation-delay: 0.34s; }
  .link-card:nth-child(5) { animation-delay: 0.42s; }
  .link-card:nth-child(6) { animation-delay: 0.50s; }
  .link-card:nth-child(7) { animation-delay: 0.58s; }

  .link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .link-card:hover::before { opacity: 1; }
  .link-card:hover {
    transform: translateY(-3px) scale(1.015);
  }

  .card-facebook { border-color: rgba(24,119,242,0.25); }
  .card-facebook::before { background: linear-gradient(135deg, rgba(24,119,242,0.12), rgba(0,100,200,0.06)); }
  .card-facebook:hover { box-shadow: 0 8px 40px rgba(24,119,242,0.25); border-color: rgba(24,119,242,0.6); }

  .card-instagram { border-color: rgba(255,61,110,0.2); }
  .card-instagram::before { background: linear-gradient(135deg, rgba(255,61,110,0.12), rgba(255,184,0,0.08)); }
  .card-instagram:hover { box-shadow: 0 8px 40px rgba(255,61,110,0.2); border-color: rgba(255,61,110,0.5); }

  .card-tiktok { border-color: rgba(0,245,196,0.2); }
  .card-tiktok::before { background: linear-gradient(135deg, rgba(0,245,196,0.1), rgba(255,0,100,0.06)); }
  .card-tiktok:hover { box-shadow: 0 8px 40px rgba(0,245,196,0.2); border-color: rgba(0,245,196,0.5); }

  .card-youtube { border-color: rgba(255,61,61,0.2); }
  .card-youtube::before { background: linear-gradient(135deg, rgba(255,50,50,0.12), rgba(255,100,0,0.06)); }
  .card-youtube:hover { box-shadow: 0 8px 40px rgba(255,61,61,0.2); border-color: rgba(255,61,61,0.5); }

  .card-website { border-color: rgba(255,122,0,0.2); }
  .card-website::before { background: linear-gradient(135deg, rgba(255,122,0,0.12), rgba(255,184,0,0.06)); }
  .card-website:hover { box-shadow: 0 8px 40px rgba(255,122,0,0.25); border-color: rgba(255,122,0,0.5); }

  .card-gmail { border-color: rgba(234,67,53,0.2); }
  .card-gmail::before { background: linear-gradient(135deg, rgba(234,67,53,0.12), rgba(255,180,0,0.06)); }
  .card-gmail:hover { box-shadow: 0 8px 40px rgba(234,67,53,0.2); border-color: rgba(234,67,53,0.5); }

  .card-whatsapp { border-color: rgba(37,211,102,0.2); }
  .card-whatsapp::before { background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(0,180,60,0.06)); }
  .card-whatsapp:hover { box-shadow: 0 8px 40px rgba(37,211,102,0.25); border-color: rgba(37,211,102,0.5); }

  /* ICON BOX con imágenes */
  .icon-box {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    background: rgba(255,255,255,0.1);
  }
  .icon-box img {
    width: 32px; height: 32px;
    object-fit: contain;
    border-radius: 6px;
  }

  .link-text { flex: 1; }
  .link-title {
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.01em;
    line-height: 1.2;
  }
  .link-sub {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2px;
    font-family: 'Space Mono', monospace;
  }

  .link-arrow {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.2);
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
  }
  .link-card:hover .link-arrow {
    color: var(--plasma);
    transform: translateX(4px);
  }

  /* QUICK CONTACT ROW */
  .social-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .social-mini {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,122,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), background 0.2s, border-color 0.2s;
    cursor: none;
    overflow: hidden;
  }
  .social-mini img {
    width: 30px; height: 30px;
    object-fit: contain;
  }
  .social-mini:hover {
    transform: translateY(-4px) scale(1.1);
    background: rgba(255,122,0,0.12);
    border-color: rgba(255,122,0,0.5);
  }

  .footer {
    margin-top: 50px;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 122, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeUp 0.8s 0.6s both;
  }
  .footer:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 122, 0, 0.5);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.15);
    transform: translateY(-2px);
  }
  .footer span { 
    color: var(--plasma); 
    font-weight: bold;
    opacity: 1; 
  }

  .scan {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--plasma), transparent);
    z-index: 20;
    opacity: 0;
    animation: scan 8s ease-in-out infinite;
  }
  @keyframes scan {
    0% { top: 0%; opacity: 0; }
    5% { opacity: 0.6; }
    95% { opacity: 0.3; }
    100% { top: 100%; opacity: 0; }
  }

  @keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 480px) {
    .wrapper { padding: 40px 16px 60px; }
    .brand-logo { width: 110px; height: 110px; }
  }
